I 开发者_如何学运维need to apply a plugin to an image when this one is loade via AJAX with jQuery .load method.
thanks a lot in advance!
initialize that plugin in load success callback something like this..
$('#result').load('ajax/test.html', function() {
// initialize your plugin on image
});
精彩评论