What version of jquery that开发者_开发知识库 richfaces(3.3.3.CR1) supports. How to find it?
Richfaces uses the $ variable for something else, so you can't use it for jQuery. Instead you have to use the jQuery
keyword. Therefore to find the version, use:
jQuery.fn.jquery
When viewing any webpage that has jQuery you can enter the following into your Firebug/Web Inspector console to be told the version:
$.fn.jquery
For example, Stack Overflow is using 1.3.2
精彩评论