I am developing a Ajax based web application.I want to add HREF and OnClick, both to the anchor tag.
This I want to do because of 2 reasons,
I was trying following code but its not working.
<A href="http://www.website.com/" onClick="alert("right click event fired"); return false;">stuff</A>
My question is, Is it possible to achieve case?
this might work
<A href="http://www.website.com/" onClick="alert('right click event fired');return false;">stuff</A>
the double quotes were getting closed in the middle..