/ Published in: jQuery
Expand |
Embed | Plain Text
<script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js'></script> <script type='text/javascript'> jQuery.noConflict(); (function($) { $(function() { }); })(jQuery); </script>
Comments
Subscribe to comments
You need to login to post a comment.

A nice way I like to do it is as follows:
var j = jQuery.noConflict();
then for selectors you would go:
j("div p").hide();
No conflict is now standard in jQuery so you just need to replace $ with jQuery
IE:
jQuery(document).ready(function() {
});