Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using three different js plugins for three functions 1. Slide show 2. Smooth Scroll (to a id or a link inside the page) 3. Photo pop-up similar to light box

I used the following
*jQuery.noConflict()(function(){
    // code using jQuery
}); 
// other code using $ as an alias to the other library*

Help me out to add the third function

share|improve this question

closed as not a real question by undefined, Bryan Crosby, Clyde Lobo, Andrew, Richard M Sep 10 '12 at 16:56

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Check this information:

http://docs.jquery.com/Using_jQuery_with_Other_Libraries

Useful code: (e.g: Using jQuery and Prototype libraries together)

<html>
 <head>
   <script src="prototype.js"></script>
   <script src="jquery.js"></script>
   <script>
     var $j = jQuery.noConflict();

     // Use jQuery via $j(...)
     $j(document).ready(function(){
       $j("div").hide();
     });

     // Use Prototype with $(...), etc.
     $('someid').hide();
   </script>
 </head>
 <body></body>
 </html>
share|improve this answer

Just put all your jQuery code inside this:

jQuery(function($){
  // your any jQuery code here, you can use $ safely
});
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.