This content has been marked as final.
Show 3 replies
-
1. Re: jQuery.atmosphere is undefined in jquery-atmosphere.js.jsf 2620
michpetrov Jun 18, 2015 4:30 AM (in response to prashant.sindhu)Given that it was able to call jQuery.atmosphere.unsubscribe() I can't see how jQuery.atmosphere could be suddenly undefined. Are you including any additional JavaScript?
-
2. Re: jQuery.atmosphere is undefined in jquery-atmosphere.js.jsf 2620
prashant.sindhu Jun 19, 2015 5:06 AM (in response to michpetrov)Hi Michal,
You were right i found one place one jquery-1.8.3.min.js was externally included which may overriding richfaces default jquery library.
i removed that and it worked.
Thanks,
-
3. Re: jQuery.atmosphere is undefined in jquery-atmosphere.js.jsf 2620
jjagadeesh1215 May 13, 2017 8:21 AM (in response to prashant.sindhu)HI prashant sindhu,
if you are using external jquery's of higher versions. It may conflict the script of richfaces. and use of jquery object. so replace the jquery object with your own $ variable by using noConflict() method of jquery.
Ex: j$ = jQuery.noConflict();
Note: replace all $ variable in jquery plugins which you are using with j$ variable.