次のコードは、すべての html href ステートメントに干渉しています
$(
function(){
// Get a reference to the content div (into which we will load content).
var jContent = $( "#simplecart_items" );
// Hook up link click events to load content.
$( "a" ).click(function( e ){
var jLink = $( this );
// Override the click to load the contents at URL.
jContent.load( jLink.attr( "href" ) );
// Prevent default click.
e.preventDefault();
}
);
}
);
干渉:
<ul class="one-row social">
<li class="updown-container"><a href="http://instagram.com/Blah" target="_blank" class="updown icon-instagram"></a></li>
</ul>
なぜ、そしておそらくこれを修正する方法について、誰かが私を助けることができますか? 私は1時間物事を試してきました..