How do you make text show on a form when you click on the submit button in jquery? -
sorry, if simple new jquery , can you please tell me answer code.
$("submit").click(function(){ $("#feedback").show(); }); is code right , if not can please correct me, many thanks!
for question created example on jsfiddle
$("#my_form").submit(function(e){ e.preventdefault(); $("#feedback").show(); });
Comments
Post a Comment