HTML form never calls Javascript
Posted
by
user1205577
on Stack Overflow
See other posts from Stack Overflow
or by user1205577
Published on 2013-10-19T21:50:26Z
Indexed on
2013/10/19
21:53 UTC
Read the original article
Hit count: 168
I have a set of radio buttons defined in HTML like so:
<input type="radio" name="group" id="rad1" value="rad1" onClick="doStuff(this.id)">Option 1<br>
<input type="radio" name="group" id="rad2" value="rad2" onClick="doStuff(this.id)">Option 2<br>
Just before the </body>
tag, I have the following JavaScript behavior defined:
<script type="text/javascript">
/*<![CDATA[*/
function doStuff(var id){
alert("Doing stuff!");
}
/*]]>*/
</script>
When I run the program, the page loads as expected in my browser window and the radio buttons allow me to click them. The doStuff()
function, however, is never called (I validated this using breakpoints as well).
I also tried the following just to see if inline made the difference, but it seems the JavaScript is never called at all:
<script type="text/javascript">
/*<![CDATA[*/
alert("JavaScript called!");
main();
function main(){
var group = document.getElementsByName('group');
for(var i=0; i<group.length; i++){
group[i].onclick = function(){
doStuff(this.id);
};
}
}
/*]]>*/
</script>
My question is, is there something special I need to do using HTML and JavaScript in this context? My question is not whether I should be using inline function calls or whether this is your favorite way to write code.
© Stack Overflow or respective owner