Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums JavaScript Lightbox JS v2.0 Re: Lightbox JS v2.0

#122375
rosspenman
Participant

Putting `jQuery.noConflict()` at the top of your script and wrapping all your jQuery with

(function($) {
// Your jQuery goes here
})(jQuery);

might help. jQuery has some [documentation on using it with other libraries](http://api.jquery.com/jQuery.noConflict/).