i have a html problem with drop down lists?
hey i need to create a drop down list where the options direct you to a DIV in the same page... can anyone help?
Public Comments
- Give the target DIV an id attribute. <div id="test">Test</div> make your select drop down like this: <select> <option>Test</option> <option onclick="{window.location='#test';}">Test 2</option> </select> That will jump to the div with the id "test". Each ID must be unique.
Powered by Yahoo! Answers