Jquery no conflict $ instead of Jquery
If you really like the short $ instead of jQuery, you can use the following wrapper around your code:
jQuery(document).ready(function($) {
// Inside of this function, $() will work as an alias for jQuery()
// and other libraries also using $ will not be accessible under this shortcut
});
