Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Reload page when select option in drop down?!

Status
Not open for further replies.

cyprus106

Programmer
Apr 30, 2001
654
I need to automatically reload a web page when the user selects an option in a dropdown box. I'm so inexperienced with Javascript that I've got no idea how it's done. Can anybody help?

Cyprus
 
yeah.

<script language=&quot;JavaScript&quot;>
function fncreload(myValue);
{
if (myValue=='whatever you want the refresh value to be')
document.location=&quot;the location of the site... i.o.w, the URL of the site you are already on.&quot;
}

and the HTML

<select name=&quot;selecty&quot; onChange=&quot;fncreload(this.value);&quot;>
/////all of your options here/////
</select>

Later,
Greelmo
 
This should work. Create a page with the following code, and try it out.

Code:
<html>
<title>reload javascript</title>
<head>
<script type=&quot;text/javascript&quot; language=&quot;javascript&quot;>
<!--
function reloadFunc(obj){
  var theVal = obj.options[obj.selectedIndex].value;
  if (theVal == 'reload') location.reload();
}
-->
</script>
</head>
<body onload=&quot;alert('I just loaded...\n...or re-loaded');&quot;>
here's a &quot;SELECT&quot; element, select &quot;reload the page&quot; to reload... other values will have no effect.
<br>
<form>
<select onchange=&quot;reloadFunc(this);&quot;>
  <option value=&quot;do nothing&quot;>do nothing</option>
  <option value=&quot;do nothing&quot;>do nothing</option>
  <option value=&quot;do nothing&quot;>do nothing</option>
  <option value=&quot;do nothing&quot;>do nothing</option>
  <option value=&quot;do nothing&quot;>do nothing</option>
  <option value=&quot;reload&quot;>reload the page</option>
</select>
</form>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top