I am trying to make autofocus on select tag on page load. But I am not able to do that with autofocus
tag.
<select class="js-example-basic-single form-control" name="sel_bookID" id="sel_bookID" autofocus="autofocus" >
@foreach ($arrayname as $data)
<option value="{{ $data->id }}">{{ $data->BookID }}</option>
@endforeach
</select>
Here autofocus="autofocus"
is not working. I refered to the question HTML select tag attribute similar to autofocus but can not get any appropriate solution. Can we do autofocus using javascript
or jquery
for select
tag?