In my project, one widget (embed to another site), there is a jQuery conflict issue with the parent website.
So now I need to create my own JS core file from jQuery core file. Is there any way to create custom JS from jQuery core file.
I have used the below script but still same problem.
$.noConflict();
jQuery(document).ready(function($) {
// Code that uses jQuery's $ can follow here.
});
i have used a few methods from the jQuery core. I want to create my own JS file from jQuery core file.