I had my HTML like this.
<ul>
<li><a href="#" id="abc"></a></li>
<li><a href="#" id="bca"></a></li>
<li><a href="#" id="cab"></a></li>
<li><a href="#" id="acb"></a></li></ul>
when the user clicks on a particular link its id should be passed to an ajax script without using an onclick() function in markup HTML.Can it be achieved using the same anchor elemnt?? Thanks in advance.