i need a HTML search form that allow input text immediately. Same as Google or youtube. we needn't click to input text into search form
This is called the "live search" technique. You can search for that on Google to find examples. Here's one:
http://static.railstips.org/orderedlist/demos/quicksilverjs/jquery.html http://orderedlist.com/blog/articles/live-search-with-quicksilver-style-for-jquery/
oh i dont need to live search, sorry i'm new to web design. but the things i need, that is a form, after page contain it have load, it allow me to write the word i need to search. ( i dont need click into form for do search )
Are you talking about autocomplete? http://jqueryui.com/demos/autocomplete/
oh my problem just simple about input text without click on form. ( login form, search form, ...) ok? dont need to auto complete. ok.
You can contact to experienced HTML5 developers of ExpertsFromIndia . com They will help you for sure...
i think you just need a simple HTML form and focus the search field when page loads
<form name="search"> <input name="keyword" /> <input type="submit" value="Search" /> </form> <script> search.keyword.focus(); </script>