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
Check the below code it will work in all browsers
Hide url toaster in bottom left on mouseover
$(function(){
$("a").each(function (index, element){
var href = $(this).attr("href");
$(this).attr("hiddenhref", href);
$(this).removeAttr("href");
});
$("a").click(function(){
url = $(this).attr("hiddenhref");
// window.open(url);
window.location.href = url;
})
});
ul > li > a{
font-size: 18px;
line-height: 30px;
}
ul > li > a:hover {
color: #425CD2;
text-decoration: underline !important;
cursor: pointer;
}