I've searched this forum and found an answer which at least pointed me in the right direction, but I need a bit more help!
My problem: I want certain links to open in a new tab, but despite using target="_blank"
the links open in the same page. The answer I found on these forums was that someone had an issue with their plugin, but I've checked mine and can't see that that's the case. What I HAVE found though, when using inspect element tool, is this:
//<![CDATA[
(function( $ ) { 'use strict';
$('a').removeAttr('target');
$('input,a,select,textarea,button').removeAttr('tabindex');
}(jQuery));
//]]>
Which looks like the key suspect to me! The only problem is, I don't know where in my website this is! I'm sorry if that sounds like a basic issue, but I just can't locate it. If anyone can help I'd me most grateful. The site is www.bibliophone.com and when you inspect the homepage you can find the above code.
Thank you,
Paul