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

Popular posts from this blog

c - Mpirun hangs when mpi send and recieve is put in a loop -

python - Apply coupon to a customer's subscription based on non-stripe related actions on the site -

java - Unable to get JDBC connection in Spring application to MySQL -