Is there a problem if i build multiple jquery plugin in one file? Ex:
//first plugin
(function($){
//first plugin code goes here
})(jQuery)
//second plugin
(function($){
//second plugin code goes here
})(jQuery)
//third plugin
(function($){
//third plugin code goes here
})(jQuery)