How To Hide url display in bottom left on mouseover?

后端 未结 8 1663
梦谈多话
梦谈多话 2021-02-06 07:02

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

8条回答
  •  野性不改
    2021-02-06 07:28

    This function convert all links to hiding hover links :

     $('a').each(function(){  
     $(this).attr('onclick','window.location.href="'+$(this).attr('href')+'"');
     $(this).attr('href','#');
     });
    

提交回复
热议问题