how to get href value of anchor tag in jquery in list code example
Example: how to get href value of anchor tag in jquery in list
$('ul.sub_menu li a').click(function() {
event.preventDefault();
var txt = $(this).attr('href');
alert(txt);
});