I am using a jquery click function:
Button code
<input type='button' id='myButtton'>
Jquery code
$(document).ready(function () { $('#myButtton').click(function () { alert('Mybutton'); }); });
This code works in Internet Explorer but does not work in Firefox.
What am I doing wrong?
In the code:
I believe it’s missing another closing brace: