I have a problem i need a jquery code to find which anchor tag-edit has been clicked in my jquery code. actually there are list of edit buttons so i need to find the the id of that particular button.
Thanks in advance
Nilanjan Saha
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can figure out which Id has been clicked in the jquery click event.
let’s say your buttons have a common class
you can bind a click event to all of those buttons with the following:
You can test this solution here.