I recently learned a very handy trick that allows you to pass $ in jQuery functions so that you all contain code in No Conflict mode. The advantage is that you can write all the contained code with "$" instead of "jQuery".
This code works fine ...
jQuery(document).ready(function( $ ) {
This code does not work ...
jQuery(window).load(function( $ ){
It says: "$ is not a function." How to make it work?
firefusion
source share