개요
- jQuery .focus()
- 포커스를 주는 jQuery 메소드
예시
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(function() {
$('#search').focus();
});
</script>
<input id='search' type='text' placeholder='Search' />
<script src="//code.jquery.com/jquery.min.js"></script>
<script>
$(function() {
$('#search').focus();
});
</script>
<input id='search' type='text' placeholder='Search' />