Javascript examples for jQuery:Plugin
Call jQuery.noConflict() to redefine jquery
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.11.0.js"></script> <script type="text/javascript"> $(window).load(function(){/*from ww w .j ava2 s .c o m*/ jQuery.noConflict(); console.log($); var jQ = jQuery.noConflict(); console.log(jQ); }); </script> </head> <body> </body> </html>