top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

Can you include multiple version of jQuery? If yes, then how they are executed?

+2 votes
380 views
Can you include multiple version of jQuery? If yes, then how they are executed?
posted Jul 17, 2015 by Shivaranjini

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

Well, it is quite possible that the jQuery plugins which are used are dependent on older version but for your own jQuery code, you would like to use newer version. So because of this dependency, multiple version of jQuery may required sometimes on single page.

Below code shows how to include multiple version of jQuery.

<script type='text/javascript' src='js/jquery_1.9.1.min.js'></script>    
<script type='text/javascript'>
 var $jq = jQuery.noConflict();
</script>    
<script type='text/javascript' src='js/jquery_1.7.2.min.js'></script>

By this way, for your own jQuery code use "$jq", instead of "$" as "$jq" refers to jQuery 1.9.1, where "$" refers to 1.7.2.

answer Jul 23, 2015 by Manikandan J
...