...but work everywhere else.
I'm obviously not expecting you (or anyone else :-) to look at third party code, but in brief:
I'm using the leaveNotice.js javascript file to place an overlay box on screen (it works great). It's working on all pages that DO NOT have a Quizzin plugin on and if I disable the Quizzin plugin it works everywhere.
Here's the couple of lines of code that call the script.
<script language="javascript" type="text/javascript" src="/wp-includes/leavenotice/js/jquery.leaveNotice.min.js"></script>
<link rel="stylesheet" type="text/css" href="/wp-includes/leavenotice/css/jquery.leaveNotice.css" />
<script language="javascript" type="text/javascript">
jQuery(function(){
jQuery('a[target=_blank]').leaveNotice({ siteName:"-----", exitMessage:"", preLinkMessage:"<div class='setoff'>{URL}</p></div>", timeOut:0 });
});
</script>
Is there anything in that that should be changed?