onclick 関数の実行を防ぐために IE8 を取得できないようです。多数のコードのバリエーションを試しました。どんな助けでも大歓迎です。現在のところ、リンクをクリックすると、発生してはならないアラートポップアップが表示されます。
<p><a href="#" onclick="openMoreProductVideos('Video title','videocode','false');return false;"><span class="txt">View all videos</span></a></p>
function openMoreProductVideos(title,productCode,fastprevoew)
{
alert ("openMoreProductVideos - should not see this!");
}
$('a[onclick^=openMoreProductVideos]').click(function (event) {
if (event.stopPropagation){
event.stopPropagation();
}
else if(window.event){
window.event.cancelBubble=true;
}
return false;
});