burge124 Posted April 12, 2008 Share Posted April 12, 2008 hi is there anyway of making this button refresh the page? <INPUT TYPE="????" class="subHeader" VALUE="Another Question"> thanks Link to comment https://forums.phpfreaks.com/topic/100780-refresh-page-solution/ Share on other sites More sharing options...
cytech Posted April 12, 2008 Share Posted April 12, 2008 <INPUT TYPE="button" class="subHeader" VALUE="Another Question" onClick="refreshMe()"> <script language="javascript"> function refreshMe(){ document.location.href = URLTOREFRESH; } </script> You could also do <form name="question" method="GET" action="URLTOREFRESH"> <INPUT TYPE="submit" class="subHeader" VALUE="Another Question"> </form> Link to comment https://forums.phpfreaks.com/topic/100780-refresh-page-solution/#findComment-515506 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.