Skip to content

Instantly share code, notes, and snippets.

@v9n
Created September 7, 2010 16:34
Show Gist options
  • Save v9n/568629 to your computer and use it in GitHub Desktop.
Save v9n/568629 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<script src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.min.js" type="text/javascript"></script>
<script>
$j1 = jQuery.noConflict();
(function ($) {
console.log($().jquery);
})($j1)
</script>
<script src="http://code.jquery.com/jquery-1.4.1.min.js" type="text/javascript"></script>
<script>
$j2 = jQuery.noConflict();
(function ($) {
console.log($().jquery);
})($j2)
</script>
<script src="http://jqueryjs.googlecode.com/files/jquery-1.2.5.min.js" type="text/javascript"></script>
<script>
$j3 = jQuery.noConflict();
(function ($) {
console.log($().jquery);
})($j3)
</script>
</head>
<body>
<div id="main"></div></body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment