Home Articles FAQs XREF Games Software Instant Books About Feedback Search Site-Map
irt.org logo

Q521 Can I change the selection in the select box by clicking on a link?

irt.org | Knowledge Base | JavaScript | Form 3.5 | Q521 [ previous next ]

Q521 Can I change the selection in the select box by clicking on a link?

Yes:

<script language="JavaScript"><!--
function changeSelect(x) {
    document.myForm.mySelect.selectedIndex = x-1;
}
//--></script>

<form name="myForm">
<select name="mySelect">
<option>Option 1
<option>Option 2
<option>Option 3
<option>Option 4
</select>
</form>

<a href="javascript:changeSelect(1)">Change it to 1</a>
<a href="javascript:changeSelect(2)">Change it to 2</a>
<a href="javascript:changeSelect(3)">Change it to 3</a>
<a href="javascript:changeSelect(4)">Change it to 4</a>

Provide feedback ...
AddThis Social Bookmark Button

Provide feedback ... AddThis Social Bookmark Button


Last Updated: 30th March 2008. Maintained by: Martin Webb and Michel Plungjan
irt.org liability, trademark, document use, privacy statement and software licensing rules apply.
Copyright © 1996-2008 irt.org, All Rights Reserved.