correct me if i am wrong:
I changed:
$(document).ready(function()
to
jQuery(document).ready(function($)
and I added the var below as a global to handle all the instances of the $ that was not insice of the document.ready function.
var $ = jQuery;
Is that what I am supposed to do? I know it works this way, it also works if I change all the $ to jQuery, but I did not think that was right, so let me know.
Thank you!
henrylemmon