select "a" tag with attribute"rel"
here is my html
<a id="ctrl2" href="'>web-link1</a>
requirement
select "a" tag that has "rel" attribute. get the values within rel and show modal
here is the code
$('a[rel]').click(function()
{
callform($(this).attr("rel"),'Required Fields');
});
function callform(PArel, lbltxt)
{
var htt=PArel.split(;);
if(htt[2]=='modal')
{
........
}
......
}
its not picking a with rel....................Any help will be highly appreciated