I am doing an MVC with C# application. I was trying to access the entire row in a table and change the values in each cell using jquery.
I need to do change the value in each td once a json call is succeeded.
Please advice for this
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.
Let’s say ‘ID’ of your table is ‘myTable’.
EDIT:
If you know ‘id’ for your tr, you can replace
‘#myTable tr:first td’ selector with ‘#<>’ replace <> with your TR id.