html - Show search feature of our website in address bar while entering name of site -
If on the address bar, you type the stackoverflow.com browser (at least Google Chrome does) displays the following message
Press tab to search stack overflows
How can I do this in my site? Any help is greatly appreciated ... Use "tabindex" for input fields
You can also set tab orders
For example:
& lt; Input name = "name1" type = "text" tabindex = "1" /> & Lt; Input name = "name2" type = "text" tabindex = "3" /> & Lt; Input name = "name3" type = "text" tabindex = "2" /> So if you press the tab button, the order will be - & gt; Name 1 - & gt; Name 3 - & gt; Name 2
Comments
Post a Comment