Plugins

User login
Can't find a Plugin?

Can't find a Plugin you are looking for? Check out the jQuery Wiki page.

Are you a plugin developer? Please move your plugin over to this site.

Website Bug or Feature Request?

Found a bug on the new jQuery Plugin website? Have a feature request?

Submit it to the jQuery Plugin website issue queue to ensure it is noticed!

How to use two plugin in one page.


Project:jQuery Plugins Website
Component:Plugin Listings
Category:support request
Priority:critical
Assigned:amitthakur
Status:active
Description

I want to use Light box plugin and lava lamp plugin on same page.
when i used these two plugin in different page it work fine. but unable to use in same page.

light box plugin

$(document).ready(function(){
$(".lightbox").lightbox();
});

lava lamp plugin

$(function() {
$("#1, #2, #3").lavaLamp({
fx: "backout",
speed: 700,
click: function(event, menuItem) {
return false;
}
});
});

please help me out