get index row in jquery code example
Example 1: jquery index of element
$("#wizard li").click(function () {
console.log( $(this).index() );
});
Example 2: how to Fetch the index of table row using jquery
BY LOVE
$("tr").index(this);
$("#wizard li").click(function () {
console.log( $(this).index() );
});
BY LOVE
$("tr").index(this);