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 8752973

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T13:20:25+00:00 2026-06-13T13:20:25+00:00

I use the code below in the my on a site I’m making: <!–

  • 0

I use the code below in the my on a site I’m making:

            <!-- ScrollTo & highlightfade -->
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>              
<script type="text/javascript" src="'.$url.'/js/jquery.scrollTo-min.js"></script>
<script type="text/javascript" src="'.$url.'/js/jquery.highlightFade.js"></script>
<script type="text/javascript" src="'.$url.'/js/init.js"></script>

            <!-- The rest of the scripts -->
<script type="text/javascript" src="http://code.jquery.com/ui/1.8.23/jquery-ui.min.js"></script>

<script type="text/javascript" src="'.$url.'/js/jquery.tipTip.js"></script>
<script type="text/javascript" src="'.$url.'/js/jquery.nivo.slider.pack.js"></script>
<script type="text/javascript" src="'.$url.'/js/nivo.slider.js"></script>
<script type="text/javascript" src="'.$url.'/js/nicEdit.js"></script>
<script type="text/javascript" src="'.$url.'/js/expand.js"></script>
<script type="text/javascript" src="'.$url.'/js/turn.js"></script>
  • As you can see I’m using 2 jQuery libraries which, what I’ve
    understood, is totally wrong. The thing is that it only works this
    way! If I delete one of them some scripts refuses to work. I’ve also
    tried to update the library to the latest version and only use that
    version, but then only a handful of the scripts above works.

  • My second problem is: When I try to load the datetimepicker script it
    doesn’t work, and it seems to be because of a jQuery library conflict.

I can’t get all of the scripts working at the same time with just one library, and when using two libraries the datetimepicker-script doesn’t work. What am I doing wrong?

  • 0 0 Answers
  • 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-13T13:20:26+00:00Added an answer on June 13, 2026 at 1:20 pm

    Your code snippet shows multiple types of scripts:

    1. Core jQuery
    2. jQuery plug-in scripts that use and rely on jQuery
    3. Your own scripts that use and rely on jQuery
    4. jQuery UI (a UI library built on jQuery)
    5. jQuery plug-in scripts that use and rely on both jQuery and jQuery UI

    Every script that uses jQuery is written and tested against a particular version of jQuery. Sometimes, it works with more than one version of jQuery and sometimes it only works with one particular version of jQuery.

    It is the responsibility of the author of the script that uses jQuery to specify what versions of jQuery it is compatible with. It is the responsibility of the person using the script to know and understand what version of jQuery is required and to create the proper environment (with the right version of jQuery present) for the script to work properly.

    A particular version of jQueryUI is compatible only with certain versions of core jQuery. Likewise, jQueryUI plug-ins are compatible only with certain versions of both jQueryUI and jQuery. You yourself must mix and match compatible versions of all of these.

    If you wish to use multiple plug-ins that each require different versions of jQuery, it is sometimes possible to manage that, but it is not an easy thing to set up, it is not an efficient way to use jQuery and it requires some custom programming to load multiple versions and make sure that the right plug-in gets the right version of jQuery. In general, this is not recommended at all as it is inefficient and complicated and easy to mess up particularly if you aren’t an advanced javascript developer.

    To start with, you should make a list of what version of jQuery every script you have says that it is compatible with. When you have that list, you can start to understand what might be compatible with what or start doing some research on how you can find a set of scripts that solve your problems that are all compatible with the same versions of jQuery.

    For example, jQueryUI 1.8.23 is a lot, lot newer than jQuery 1.3.2 (a pretty old version of the core jQuery library). I would suggest starting with those two and make sure they are compatible. Then, only add plug-ins that are compatible with the combination of these two that you end up with. You will need to consult the documentation for each plug-in to find out what versions of jQuery it is compatible with. If it does not have any documentation about jQuery compatibility, then look in the source for the plug-in and see if there is any indication there. If there still is not any compatibility information, then you will have to do your own testing/debugging to ascertain compatibility or choose a different solution that does give you compatibility information.

    If you are a relative newcomer to jQuery and javascript development, then you probably want to stick with using combinations that contain documentation about what will work and what will not work and construct your environment to be compatible with their tested requirements. Debugging and fixing incompatibility problems is not a beginner topic. You may (or may not) be able to identify the first place a problem is occurring in a javascript debug console, but fixing something you find is wrong is a more advanced topic.

    If you eventually determine that you must load multiple versions of jQuery on the same page for different plug-ins and there is no better way to solve your issue, that is possible, but it must be done carefully. This jQuery doc page describes the basics of how that is done.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there an ide/site that I can use to analyse code below and get
I use the below mod rewrite code for urls like: www.site.com/play/543 RewriteEngine On RewriteRule
i use the code below to open a new window when a user drops
I use this code below to hide stream url of songs for my wordpress
As a PHP developer, I always use the code below whenever I want to
I use below code to post an url to facebook page as a admin
I use below code to update listview. setListAdapter(MyAdapter); MyAdapter.notifyDataSetChanged(); getListView().setEmptyView(empty); But each time update,
i use below code - Just try again. - to prevent deadlock. it seems
I use below code to get photo's path and id: String[] projection = {MediaStore.Images.Media._ID,
I use below code to show folder list in AlertDialog: ListDialog = new AlertDialog.Builder(MyActivity.this);

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.