Hello!
Does anyone know how I can make a list that acts like a html jump menu (for a regular list I have to use a "Go" button in order to achieve the desired behaviour and jump menus I cannot use because they work only with links to other pages). For example, I want such a list filled with questions from my db and when I select one I want to see its possible answers; the page stays the same, only its data differs based on the selection. Or you can have a look at such a jump menu on this website, the one with options for geting to various sections of the forum.
This is a question for ClientSide Technologies section of the forum:
U have to use javascript, like onchange event:
<select onchange="return ShowAnswer(this)"> <option value="question1">Question 1</option> .... </select>