Youtubeのクリックを無効にするiframe
か、差分クリックを設定する必要があります。前
に a を付けようとしましたが、うまくいきません。div
iframe
これが私のコードです。Chromeでは機能しますが、Mozillaでは機能しません:
$(".youtube").each(function () {
var div = this;
var offset = $(this).offset();
var x = offset.left;
var y = offset.top;
var height = $(this).height();
var width = $(this).width();
var divInFront = '<div style="position:absolute; height:' + height + '; width:' + width + '; top:' + y + '; left:' + x + ';" ></div>';
$("body").append(divInFront);
});