[javascript]
var j = jQuery.noConflict();
// Do something with jQuery
j("div p").hide();
// Do something with another library’s $()
$("content").style.display = ‘none’;
[/javascript]
[javascript]
var j = jQuery.noConflict();
// Do something with jQuery
j("div p").hide();
// Do something with another library’s $()
$("content").style.display = ‘none’;
[/javascript]
© 2023 Best jQuery.