Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Need to resolve conflict to Multiple jQuery's from single page #814

Open
dmuralimohan opened this issue Oct 9, 2023 · 0 comments
Open

Comments

@dmuralimohan
Copy link

I have initialized window.jQuery = jQuery; now, i want to add some prototype functions with different jQueries, like
var a = window.jQuery;
var b = window.jQuery;
a.fn.helloWorld = () => 1;
b.fn.helloWorld = () => 2;

console.log(a.fn.helloWorld()); // 2
console.log(a.fn.helloWorld()); // 2

In this case, when i use noConflict from a variable, then b has undefined then, how can i use jquery for this case?

@dmuralimohan dmuralimohan changed the title Need to resolve conflict from Multiple jQuery from single page Need to resolve conflict to Multiple jQuery's from single page Oct 9, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant