Hey!
I'm using an ajax script to load external html pages into a div tag. The script works just fine, however I would like to use it in a jump menu.
<select name="Jumpmenu" >
<option value="1" onclick="ajaxpage('page1.php', 'DivId');" >Option 1</option>
<option value="2" onclick="ajaxpage('page2.php', 'DivId');" >Option 2</option>
</select>
The script works when I use it in the <select> tag:
<select name="Jumpmenu" onclick="ajaxpage('page1.php', 'DivId');" >
<option value="1">Option 1</option>
<option value="2" >Option 2</option>
</select>
But I would like to specify the vars for each option