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
  • 65,304
  • 15
  • 70
  • 95
benjo
  • 311
  • 1
  • 4
  • 10
  • 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
  • 31,534
  • 6
  • 35
  • 61