I came across a weird little problem. After searching around to fix the refreshing of a page after a form submit, I found that you could use 'return false'. I was happy to see that it worked in FF, but when I tried in IE... it still refreshed the page.
This is the important part of the code:
<form action="" onsubmit="event.preventDefault(); showAddress(this.address.value); return false">
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><h3>address:</h3></td>
</tr>
<tr>
<td><input type="text" size="60" name="address" value="" /></td>
<td> </td>
<td><button type="submit" value="Zoek!">Zoek!</button></td>
</tr>
</table>
</form>
How can I make sure it doesn't refresh in IE?
Thanks in advance!
EDIT I changed it now, so that I am no longer using a form. Instead I use the button's onclick event. Thanks to Shin for pointing out my error.
<table cellspacing="0" cellpadding="0" border="0">
<tr>
<td><h3>address:</h3></td>
</tr>
<tr>
<td><input type="text" size="60" name="address" value="" /></td>
<td> </td>
<td><button type="submit" onclick="showAddress(this.value); value="Zoek!">Zoek!</button></td>
</tr>
</table>