Dear all I am using jQuery, I have little doubt of how to Extract list data effectively?
My List having
<li class="add"><a href="#">Data1</a></li>
<li class="add"><a href="#">Data2</a> </li>
...
My JQuery has
$(".add").click(function(e){
e.preventDefault();
// Here is to get the Value of Data1 and data2 ..
// How to alert Data1,Data2 effectively
});