unemployment Posted June 19, 2011 Share Posted June 19, 2011 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. Quote Link to comment https://forums.phpfreaks.com/topic/239807-loop-through-lis/ Share on other sites More sharing options...
efficacious Posted June 19, 2011 Share Posted June 19, 2011 //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) Quote Link to comment https://forums.phpfreaks.com/topic/239807-loop-through-lis/#findComment-1231869 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.