Hello!<br><br>I did a map over an image and every time I click on a mapped point it changes the content of a combobox (select). It works fine on firefox but internet explorer clears the combo's content every time a mapped point is clicked. Is it a problem that can be solved?
<br><br>This is what I did:<br><br>A function to change the combo's value:<br><br><pre style="font-family: arial,sans-serif;" id="line1"><font size="2">function change(newvalue)<br>{<br>        document.form_name.select_name.value
 = newvalue;<br>}<br><br>HTML code:</font><br></pre>&lt;form ... name='form_name' ...&gt;<br><div style="margin-left: 40px;">&lt;select name='select_name'&gt;<br><div style="margin-left: 40px;">options<br></div>&lt;/select&gt;
<br></div>&lt;/form&gt;<br><br>&lt;img ... usemap='#map_name'&gt;<br><br>&lt;map name='map_name'&gt;<br><div style="margin-left: 40px;">&lt;area ... onclick='change(&quot;newvalue&quot;)'&gt;<br></div>&lt;/map&gt;<br><br>
-- <br>Henrique