How do I get my JQuery to work in Joomla? - Joomla! Forum - community, help and support
hello everyone,
have created jquery thing magigi.
i have seperated external js. file , seems work fine when test on localhost without joomla. on other hand, joomla freezes no motion no text.
i went jquery site , suggested changing $ $j , assign $j var
$j = jquery.noconflict();
regardless, after did had no luck.. there more integrating jquery joomla doing this? can please point me in right direction.
have created jquery thing magigi.
i have seperated external js. file , seems work fine when test on localhost without joomla. on other hand, joomla freezes no motion no text.
i went jquery site , suggested changing $ $j , assign $j var
$j = jquery.noconflict();
regardless, after did had no luck.. there more integrating jquery joomla doing this? can please point me in right direction.
hello,
first:
remember check capitalization. $j != $j in javascript.
so, if using 'var $j = ...' $j nothing.
second.
try adding outside of document.ready:
jquery.noconflict();
var $j = jquery;
also, remember check capitalization. $j != $j in javascript.
first:
remember check capitalization. $j != $j in javascript.
so, if using 'var $j = ...' $j nothing.
second.
try adding outside of document.ready:
jquery.noconflict();
var $j = jquery;
also, remember check capitalization. $j != $j in javascript.
Comments
Post a Comment