I have a page for member\'s where log in is essential. On this page members get links for lectures conducted. Lectures links get added regularly. And Links to recording are fet
This function convert all links to hiding hover links :
$('a').each(function(){ $(this).attr('onclick','window.location.href="'+$(this).attr('href')+'"'); $(this).attr('href','#'); });