Codementor Events

$(...).live is not a function - Fix explained

Published Mar 19, 2021

Easy fix just page the below javascript in any of the js files on top and there you go to solve it...
jQuery.fn.extend({
live: function (event, callback) {
if (this.selector) {
jQuery(document).on(event, this.selector, callback);
}
return this;
}
});

Discover and read more posts from RajhaRajesuwari S
get started
post commentsBe the first to share your opinion
Show more replies