jsp - How do I use the latest version of jQuery and get back the '$' for jQuery in RichFaces? -
richfaces 3.3.3 comes baked in jquery 1.3.2 , prototype , scriptaculous well.
how can try , use latest version of jquery? can use google cdn one?
also $()
object defaulted prorotype , use jquery have jquery()
is there way $ jquery without breaking richfaces?
update: can use multiple versions of jquery side side. now, i've gone ahead , used version comes baked richfaces.
you can use $ jquery without breaking richfaces wrapping jquery code in manner:
(function($) { /* jquery code can use $() here */ })(jquery);
Comments
Post a Comment