New to Jquery. Trying to have my function fire when a specific form is submitted.
I have:
That will fire when any form on the page is submitted though right? How do I specifcy a specific form?
I have:
Code:
$(document).ready(function(){
$("form").submit(function(){
That will fire when any form on the page is submitted though right? How do I specifcy a specific form?