I am using two jQuery scripts. One is for controlling the drop down navigation on a site and the other is for a slideshow.
The one module is preceded with this code:
jQuery.noConflict();
(function($){
$.fn.dropmenu = function(custom)
The other one starts like this:
$(document).ready(function() {
As a result all of the functions in the second one show up as "not a function"
Since both of the scripts I am using are jQuery it seems that I should be able to get rid of the NoConflict function and these two scripts would play nicely together.
Sage advice welcome.
