Jump to content

Recommended Posts

I have an auto suggest drop down menu.  When I click the down arrow I want it to select the first search result in the list.  If I hit it again I want to second search result to be selected.  What is the logic behind doing something like this, or rather what is the best way to reach my result.

Link to comment
https://forums.phpfreaks.com/topic/239807-loop-through-lis/
Share on other sites


//set a tag name on the elements

var ElementArray = document.getElementsByTagName('YOURTAGNAME');
for(var i=0; i<ElementArray.Length; i++)
{
     //Do something
     ElementArray[i].selected /// Or W/e
}

 

you'll need to combine something like this with an onclick event and maybe check to see which element has the selection and then increase the index of elements from that element to select the next.. (depending on which direction arrow clicked)

Link to comment
https://forums.phpfreaks.com/topic/239807-loop-through-lis/#findComment-1231869
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.