I have a button on my page that looks like this...
What I want to do is remove the button and just have the page continue on. I figured the easiest way would be to use a timer so I replaced the button script with this script...Code:<input type="button" class="button" id="createButton" value="Run" onclick="handleCreateButton()">
Code:<Script language="Jscript"> var oInterval; function RemindMsg(msg) { oInterval=window.setInterval("handleCreateButton()", 0010); }</Script>
But it does absolutely nothing. I obviously don't know java, but I thought this was simple enough. I'm open to any solution. Thanks everybody


Reply With Quote
Bookmarks