I need it to replace an old select-to-autocomplete script which is used to choose employee name. And I need it to auto-focused on page load.
Right now I have solved it like this:
$('.zelect .placeholder').click();
But this is obviously not a good way to do things. It would be best if it could parse autofocus attribute from the original <select> tag.
Thanks!