Set focus on search bar on load

This forum is for all Flare issues related to the HTML5, WebHelp, WebHelp Plus, and Adobe Air Targets
Post Reply
mrmansfan
Propeller Head
Posts: 11
Joined: Thu Jul 23, 2009 7:23 am

Set focus on search bar on load

Post by mrmansfan »

When I open my HTML5 help page, the focus is not set in the search bar. You have to first click in the search bar to set the focus, then type your search query. Is there anyway to set the focus on load of the home page so that a user can just start typing their search?
NorthEast
Master Propellus Maximus
Posts: 6363
Joined: Mon Mar 05, 2007 8:33 am

Re: Set focus on search bar on load

Post by NorthEast »

If you search on Google, you'll find plenty of examples - they'll use javascript focus()

I'd suggest something like this for a Top Nav skin:

Code: Select all

$(document).ready(function(){
	$("input.search-field").focus();
});
Post Reply