</script>
<script>
var z = jQuery.noConflict();
jQuery(function(){
alert("hello");
})
z(function () {
alert("world");
})
</script>
</head>
<body>
<div></div>
</body>
</html>
The code is shown above, using the noConflict () method, but you can still use jQuery to call the method, or z to call it. Shouldn"t you be able to call it with jQuery?