jquery - Why this event is not fired on fiddle? -
this code! don't know why addtrack
not recognized :
<input type="submit" onclick="addtrack(this);return false" value=" add "> function addtrack(param) { alert("ciao"); }
error : uncaught referenceerror: addtrack not defined
set script insertion mode no wrap (head)
instead of onload
, work expected.
updated fiddle here.
Comments
Post a Comment