my form has a submit button that's been defined this way:
<input type="submit" name="submit-reg" value="Register" class="submit button">
What is the syntax to call the button's jquery click() function? I've tried:
$('#submit-reg').click(function()...
But it's not working.
id=submit-redto<input ...>– Harry Joy May 17 '11 at 6:34