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

Popular posts from this blog

python - How to create a legend for 3D bar in matplotlib? -

java - Multi-Label Document Classification -

php - Dynamic url re-writing using htaccess -