How to find jquery versin in richfaces

What version of jquery does richfaces support (3.3.3.CR1). How to find it?

+2


a source to share


2 answers


Richfaces uses the $ variable for something else, so you can't use it for jQuery. You need to use a keyword instead jQuery

. Therefore, to find the version, use:



jQuery.fn.jquery

+5


a source


When viewing any webpage with jQuery, you can enter the following information into the Firebug / Web Inspector console:

$.fn.jquery

      



For example Stack Overflow is using 1.3.2

+1


a source







All Articles