HomeArticlesFAQsXREFGamesSoftwareInstantBooksBBSAboutFOLDOCRFCsFeedbackSearchSite-Map
logo

Q775 How can I refresh the current page when the value of a select form field changes?

You are here: irt.org | FAQ | JavaScript | Redirect | Q775 [ previous next ]

You could try using the trick of using the history objects go() method to go to the current history location:

<FORM>
<SELECT onChange="history.go(0)">
<OPTION VALUE="abc">text 123
<OPTION VALUE="def">text 456
</SELECT>
</FORM>

©2011 Martin Webb