jquery index of array element code example
Example: jquery index of element
$("#wizard li").click(function () {
console.log( $(this).index() );
});
$("#wizard li").click(function () {
console.log( $(this).index() );
});