私は以下のiframeを持っています:
<iframe class='upload_target' name='upload_target' src='#' style='width:0;height:0;border:0px;solid;#fff;'></iframe>
以下のコマンドを停止しようとしていますが、未定義のエラーが発生し続けます:
$('.upload_target').contentwindow is undefined
この未定義のエラーを修正するにはどうすればよいですか?
以下はコードです:
$(".uploadbutton").click(function() {
$(".upload_target").contentWindow.stop(); //for anything but IE
$(".upload_target").contentWindow.document.execCommand("Stop"); // for IE
return stopImageUpload();
});