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