jQuery - Finding the row number of the current select element within its change handler
- by loviji
Hello, I have a table. In this table have select element. How can I find in which table row is select element, from within the select's event handler:
$('#selectElemID').live('change', function(){...});
Thanks