考えられることはすべて結び付けましたが、何らかの理由で、ajax を介して Gist から生ファイルをロードしようとしたり、fancybox などを使用して iframe にロードしようとすると、機能しません。ただし、ブラウザでは問題なく動作します。何か案は?
<a class="raw-file" href="https://gist.github.com/raw/2408789/2da6f8b2377cdb86ac0b7a005eec1c1b90459569/Jquery-click-prevent-redirect.txt">Jquery-click-prevent-redirect.txt</a>
<div>results here...</div>
$(document).ready(function() {
$("a").click(function(event){
jQuery.ajax({
url: $(this).attr('href'),
dataType: "json",
beforeSend: function(){
$(this).closest('div').html('getting file...');
},
success: function(data) {
$(this).closest('div').html(data);
},
complete: function(){
//stuff here
}
});
});
});
完全なデモはこちら: