HTMLページに新しい要素を追加した後、prettyPhotoまたはその他のjqueryプラグインを機能させようとしています。
具体的には、私はこれを持っています:
$(document).ready(function() {
$(window).scroll(function() {
if($(window).scroll) {
$('div#loadMoreComments').show();
$.ajax({
type : "POST",
url : "getvariables.php",
dataType: "json",
data : { webid: $(".posts:last").attr('id') }
}).done(function( msg ) {
jQuery.each(msg , function(index, value){
$("#posts").append(value);
});
// $("#posts").append(msg);
$('div#loadmore').hide();
});
}
});
});
次に、ポップアップをトリガーする必要があるこのようなものがあります
<p><a href="#inline-1" rel="ibox">Trigger popup.</a></p>
<div id="inline-1" style="display: none;">
Content to show up after the link is triggered
</div>
これについての助けをいただければ幸いです。ありがとう。