I'm just learning JQuery, I'm stuck on the following.
I have a HTML table (created by PHP, displaying the result of a MYSQL query).
The first column of the table has a drop down menu which allows the user to change the value of the cell, and update the database. I'm using, .toggle, .post to make that work. My issue is that only the first row works, which I believe is because I'm targeting the ID(s) which are duplicated.
So, can someone point me toward the correct technique. By biggest problem is not knowing the right question to ask....
Do I somehow dynamically create unique ID's for each row? But if so, how do I pass those, or otherwise get JQuery to target each row and it's content as it's selected by the user?
Thanks
--