Horje
can we use two versions of jquery in same page Code Example
can we use two versions of jquery in same page
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js" type="text/javascript"></script>
<script>
    var $i = jQuery.noConflict();
    alert($i.fn.jquery);
</script> 

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
    var $j = jQuery.noConflict();
    alert($j.fn.jquery);
</script> 

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<script>
    var $k = jQuery.noConflict();
    alert($k.fn.jquery);
</script> 




Javascript

Related
generate module with routing in angular Code Example generate module with routing in angular Code Example
regex min length max length Code Example regex min length max length Code Example
jquery datepicker change date format Code Example jquery datepicker change date format Code Example
npm youtube-react Code Example npm youtube-react Code Example
js is json Code Example js is json Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
6