Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8727953
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T08:32:01+00:00 2026-06-13T08:32:01+00:00

I wrote code in which I call jQuery.noConflict(); many times. How can reduce jQuery.noConflict();

  • 0

I wrote code in which I call jQuery.noConflict(); many times.
How can reduce jQuery.noConflict(); presence since I think it’s not good that the statement is repeated several times

$glob = jQuery.noConflict();

            /* functions to run when content loads */
            $glob(document).ready(function(){

                var ht = $glob(window).height();

                $glob('.content').css({
                    'height': ht,
                    'min-height': ht
                });

                $glob('#page').css({
                    'top':-ht
                });
            });


            /* functions to run when page loads */
            function animateHorizontal2id(id,msg){ //the id to animate, the easing type



                var $a = jQuery.noConflict(); // defined to remove jquery conflict error
                var animSpeed=2000; //set animation speed
                var page= $a("#page"); //define the page to move

                var ht = $a(window).height();



                //do the animation

                var archPos = $a(id).position().left;           

                $a('#architecture').css({
                    'left': archPos
                });



                page.stop().animate({"left": -($a(id).position().left)}, animSpeed

                                    );

                    $a('#page').css({
                        'top': -ht
                    });
                //}

            }
            function animateVertical2id(id,msg) {

                var $arct = jQuery.noConflict(); // defined to remove jquery conflict error
                var animSpeed=2000; //set animation speed
                var page= $arct("#page"); //define the page to move
                //do the animation

                page.stop().animate({"top": -($arct(id).position().top)}, animSpeed);

            }

            function animate2Home(id,msg) {
                var $home = jQuery.noConflict(); // defined to remove jquery conflict error

                var archPos = $home(id).position().left;            

                var ht = $home(window).height();
                $home('#page').css({
                    'top': -ht
                });

                $home('#architecture').css({
                    'left': archPos
                });


                var animSpeed=2000; //set animation speed
                var page= $home("#page"); //define the page to move
                //do the animation
                page.stop().animate({"left": -($home(id).position().left)}, animSpeed);
            }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T08:32:02+00:00Added an answer on June 13, 2026 at 8:32 am

    The point of .noConflict() is to re-assign jQuery to a different global once and then reference your new global where you need to. Your code could easily be written like this:

    $glob = jQuery.noConflict();
    /* functions to run when content loads */
    $glob(document).ready(function () {
        var ht = $glob(window).height();
        $glob('.content').css({
            'height': ht,
            'min-height': ht
        });
        $glob('#page').css({
            'top': -ht
        });
    });
    /* functions to run when page loads */
    function animateHorizontal2id(id, msg) { //the id to animate, the easing type
        var animSpeed = 2000; //set animation speed
        var page = $glob("#page"); //define the page to move
        var ht = $glob(window).height();
        //do the animation
        var archPos = $glob(id).position().left;
        $glob('#architecture').css({
            'left': archPos
        });
        page.stop().animate({
            "left": -($glob(id).position().left)
        }, animSpeed);
        $glob('#page').css({
            'top': -ht
        });
        //}
    }
    
    function animateVertical2id(id, msg) {
        var animSpeed = 2000; //set animation speed
        var page = $glob("#page"); //define the page to move
        //do the animation
        page.stop().animate({
            "top": -($glob(id).position().top)
        }, animSpeed);
    }
    
    function animate2Home(id, msg) {
        var archPos = $glob(id).position().left;
        var ht = $glob(window).height();
        $glob('#page').css({
            'top': -ht
        });
        $glob('#architecture').css({
            'left': archPos
        });
        var animSpeed = 2000; //set animation speed
        var page = $glob("#page"); //define the page to move
        //do the animation
        page.stop().animate({
            "left": -($glob(id).position().left)
        }, animSpeed);
    }
    

    That said, I really like Allan Kimmer Jensen‘s solution, although I would write it like so:

    (function ($) {
        // You can use $ safely in here with no conflicts.
    }(jQuery.noConflict()))
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working with the jQuery Validation plugin and I wrote the following code which
We allow users to write code which sometimes calls jQuery.ready(function(){..}) multiple times. It seems
I already wrote some light weight logging code which would call server side every
I wrote some code which monitors the output of Stopwatch using a tight loop.
So, I wrote a code which uses some Microsoft Sql server dlls, these dlls
I have wrote the code below which was taken from Java How to program
I wrote code to get name of printer which is installed in my system.but
I wrote few lines of code which doesn't work correctly. Why? Could sb explain
Below is the code which I wrote to display a tooltip content. As the
I have been refactoring throwaway code which I wrote some years ago in a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.