Jquery To Fetch The Contents From A Selected Row In Php
Here is the source code , its not able to fetch the selected content when i check the checbox rather its taking all the contents from the table ... Can anyone spot what mistake is
Solution 1:
You have two loops here. The outer one seems to attach a click handler to all rows (or to the checkboxes of each row). The inner one however makes no sense. It's result is that no matter what checkbox you click, it will iterate over all rows and collect the values.
Post a Comment for "Jquery To Fetch The Contents From A Selected Row In Php"