このコードを使用して、外部htmlファイルをメインindex.php
ファイルにロードしています。
$(document).ready(function(){
$(".fld").click(function(){
$("#collection").load($(this).attr("name"));
});
});
コードはこのhtmlファイルからデータを取得します。これ
<a class="fld" name="external.html" href="#">Folder 1</a>
がexternal.htmlファイルです。
<a class="song" href="#" name="http://impk.co.in/sound/sound1.mp3">Song1</a>
external.html
そのファイルをindex.php
jquery関数にロードした後、そのexternal.html
ファイルに対してのみ機能しなくなりました。残りのjquery関数はまだ機能しています。