Cant seem to get this working. Any help would be great. I am somewhat of a beginner with jquery.
$('#add_button').click(function () {
$("#add_button").hide();
});
Here is the HTML
<input id='add_button' type='submit' class='add_now' value='' />
Seems simple enough, but clicking on the input does nothing. Is there a different method for targeting inputs? Thanks.