Internet Explorer features
Hi,
I have a html running on a webserver with the following javascript included:
<script language=javascript>
function deleteit()
{
document.list.action = "delete.asp";
document.list.submit();
}
function saveit()
{
document.list.action = "save.asp";
document.list.submit();
}
</script>
<form name="list" methode="get">
<input type="button" value="delete it" onclick="return deleteit();">
<input type="button" value="save it" onclick="return saveit();">
</form>
When I click the buttons in Netscape ... no problems. In IE, this gives problems on the submit line.
Anyone knows why?
Thanks!!
S.
Programmers song.
100 little bugs in the code.
100 little bugs in the code.
Fix one bug and recompile.
101 little bugs in the code.
[Repeat until bugs = 0]