NancyJ
03-06-2007, 02:49 PM
so I have this very simple line of html
<select name = "myselect" id = "myselect" onchange="myfunction();">
Works perfectly in firefox, calls the function and runs it perfectly.... however in IE it says 'Object doesn't support this action' pointing at that line of perfectly simple html. So I figured the problem was in the function itself. So I rewrote the function to be just
function myfunction()
{
}
and I get the same error.... what am I doing wrong?
<select name = "myselect" id = "myselect" onchange="myfunction();">
Works perfectly in firefox, calls the function and runs it perfectly.... however in IE it says 'Object doesn't support this action' pointing at that line of perfectly simple html. So I figured the problem was in the function itself. So I rewrote the function to be just
function myfunction()
{
}
and I get the same error.... what am I doing wrong?