trying to consolidate my JS so I've got a number of jQuery Plugins such as Superfish minified within one JS file and just below, in the same file, I initialize the various plugins within jQuery(document).ready, but console is showing undefined errors such as:
Uncaught TypeError: Object [object Object] has no method 'superfish'
However when I initialize outside of jQuery(document).ready everything is fine!
Any clues whats wrong here?