You cannot use .live()for this, the closest equivalent to this is the .livequery()plugin. .live()is an event listener , listening for bubble events, not new elements.
In addition, you start the plugin with this selector and context when adding new elements, for example. in the query $.ajax(), something like this:
$.ajax({
success: function(data) {
$('.Multiple', data).jPicker();
}
});
source
share