i've got a jquery image preview plugin that i use. i use it like this:
$('a.preview').live('mouseover', function() {
$(this).imgPreview({
preloadImages: 'true',
});
});
i want the imgPreview function to be executed after an jquery ajaxcall that will insert an image in the DOM. so i wanna execute it to preload the image.
any ideas?