Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

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>

©2018 Martin Webb