I have on my page 2 version of jQuery, in one of them I add the
var costumName = $.noConflict(true);
Is there a way to print the version uses the no conflict ?
I have on my page 2 version of jQuery, in one of them I add the
var costumName = $.noConflict(true);
Is there a way to print the version uses the no conflict ?
This returns the jQuery version:
$.fn.jquery
So to get the second one, defined as costumName
, it should be:
costumName.fn.jquery