So, I have a text box which is used as the address bar for the iframe. Well, before, I needed a "GO" button with this script:
<script language="javascript">
function LoadPage(){
var objFrame=document.getElementById("myIframe");
objFrame.src=document.getElementById("URL").value;
}
</script>
"GO" button code:
<input type="image" src="http://polaris.umuc.edu/~mahearn/images/arrowbutton.png"
height="20" width="20" class="frmSubmit" value="Go" onclick="LoadPage()" />
I want that code to be activated when the user presses "ENTER" while typing in the text box.
This is what I tried. What happened was that instead of a key pressed down that activated the event, when I clicked on the text box, the event was activated.
input type="text" value="http://" class="frmUrlVal" id="URL1" onkeypress="return (LoadPage(1))"/>
You could put a form around the textbox with an
OnSubmit
event handler. Be sure you returnfalse
at the end of the handler to prevent it from actually submitting the form.