Listen to the code below:
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery("#report tr:even").addClass("even");
jQuery("#report tr:not(.even)").hide();
}
jQuery.noConflict() told the browser to stop Jquery aliasing $('xxx'), which allow other javascript framework to used this alias. Since we cannot used the term dollar sign $-) anymore, we need to used JQuery("xxx").yourJqueryFunction().
Please try...
to replace the $ symbol you can always use below function:
BalasPadamvar jq = jQuery.noConflict();
jq(document).ready(function(){
// do whatever things u want
});
Also can be done. Great work !
Padam