I have this error
TypeError: jQuery(…).live is not a function
at HTMLDocument.<anonymous>
// Media Image Gallery
jQuery(‘.nnfy-remove’).live( “click”, function(e) {
e.preventDefault();
var id = jQuery(this).attr(“id”)
var btn = id.split(“-“);
var img_id = btn[1];
jQuery(“#row-“+img_id ).remove();
});