get anchor tag id value jquery code example
Example: How to get anchor tag value using tag id
$("div#livesearch a"). on("click", function(){
$(this). text();
});
$("div#livesearch a"). on("click", function(){
$(this). text();
});