Hi, I was wondering.
Is there a way to turn hover feature off on image links? I tried using:
$(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;
})
});
But this is affecting light box <a href> selection feature. Is there a workaround?
Please see attached for reference. Thank you!
NC
