[Javascript] Changing a Combobox content

Henrique Rennó henrique.renno at gmail.com
Fri Oct 27 14:57:33 CDT 2006


Hello!

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?

This is what I did:

A function to change the combo's value:

function change(newvalue)
{
	document.form_name.select_name.value = newvalue;
}

HTML code:

<form ... name='form_name' ...>
<select name='select_name'>
options
</select>
</form>

<img ... usemap='#map_name'>

<map name='map_name'>
<area ... onclick='change("newvalue")'>
</map>

-- 
Henrique
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.evolt.org/pipermail/javascript/attachments/20061027/d4d05abd/attachment.htm>


More information about the Javascript mailing list