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 · 1 comment
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
@SuhelKhanCA
Copy link

SuhelKhanCA commented Aug 3, 2024

You can assign each instance of jQuery to a distinct variable by loading it more than once, as an alternative to utilizing noConflict. This is an illustration:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Separate jQuery Instances</title>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        var a = jQuery.noConflict(true);
    </script>
    <script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
    <script>
        var b = jQuery.noConflict(true);

        a.fn.helloWorld = function() {
            return 1;
        };

        b.fn.helloWorld = function() {
            return 2;
        };

        console.log(a.fn.helloWorld()); // 1
        console.log(b.fn.helloWorld()); // 2
    </script>
</head>
<body>
</body>
</html>

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

2 participants