Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Here is the page url http://meracd.com/design/disc_designer.php?disc=cd

I've used jqueryUI for the slider. But it isn't working. I've loaded jquery and jquery UI before the custom.js script.

enter image description here

share|improve this question
Include the relevant code in your question rather than just linking to a site that doesn't work, please. – Anthony Grist Feb 24 '12 at 17:50

3 Answers

up vote 16 down vote accepted

You have multiple instances of jQuery on your page.

Your jQuery UI Slider Plugin is attaching to window.jQuery (which is version 1.6.2), but your custom.js code is trying to run against window.$ (which is version 1.6.4).

You need to either:

  • Get rid of one of them (there's no need to have both)
  • Alias the jQuery used in custom.js
  • Use noConflict() to resolve which jQuery gets access to the $ variable.
share|improve this answer
I have removed the extra jquery and jquery ui scripts, now there's only a single reference to them. Still it in't working. – Pritesh Desai Feb 24 '12 at 19:10
2  
Because now the custom.js file starts with jquery, which should be jQuery (cap sensitive). – yahelc Feb 24 '12 at 21:44
:D thanks @yahelc your suggestion worked, I replaced all instances of $ with jQuery and its running beautifully. – Pritesh Desai Feb 25 '12 at 10:59

You save my day in my case noConflict() solve my problem

sample of my code

#

MVC 4

<script src="/Scripts/jquery-1.8.3.js"></script>
<script src="/Scripts/jquery-ui-1.9.2.js"></script>

jQuery.noConflict();
$(function(){
                 //  var $searchBox =  $("input#SearchString");
                   $("input#SearchString").autocomplete({
                       source: []
                   });
          });
share|improve this answer
Use jQuery.noConflict(); before the start of your jQuery function to avoid conflicts with multiple (different) versions of jQuery files. – Faizan Jan 6 at 9:51

I just want to say that I had a similar issue and solved it by upgrading my version of JQuery. I had a really old version on the site and by updating to the latest one the issue was resolved.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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