0

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 ?

Zakaria Acharki
  • 66,747
  • 15
  • 75
  • 101
benjo
  • 351
  • 1
  • 5
  • 11
  • 1
    Possible duplicate of [How to check what version of jQuery is loaded?](https://stackoverflow.com/questions/6973941/how-to-check-what-version-of-jquery-is-loaded) – Richard Parnaby-King Jun 20 '17 at 13:53

1 Answers1

2

This returns the jQuery version:

$.fn.jquery

So to get the second one, defined as costumName, it should be:

costumName.fn.jquery
Louys Patrice Bessette
  • 33,375
  • 6
  • 36
  • 64