I have several forms on my page. Each form is named according to the ID in the database.
<form id="spam-X" method="post">
So on my page, if there are 3 comments, there are 3 forms.
<form id="spam-1" method="post">...</form> <form id="spam-2" method="post">...</form> <form id="spam-3" method="post">...</form>
Now I want to run a set of functions for based on what form is submitted. So I have my submit function in jquery...
$("form#[id^='spam']").submit(function() {
Now the problem is, I want to get the contents within this specific form that was clicked, so I'm assuming I will need the trailing ID (spam-1, spam-2, spam-3).... How do I get that value?