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.

Possible Duplicate:
jQuery & Prototype Conflict

I think I have a problem between jQuery and prototype the problem only shows in Internet Explorer 8

http://www.urbanclothing.dk/faq/

In IE8 the browser will not expand the faq questions. Can anybody tell me how to solve it?

I'm using the IEtester to test the website with IE8.

Looking forward to get some suggestions.

share|improve this question
2  
look at api.jquery.com/jQuery.noConflict – Niels Nov 18 '11 at 18:24
@Niels: If you can elaborate a bit more on that I'd consider that a good answer. – Blender Nov 18 '11 at 18:25
too much javascript – diEcho Nov 18 '11 at 18:25

marked as duplicate by Blender, Samuel Liew, Amy, Clive, BalusC Nov 19 '11 at 2:57

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 0 down vote accepted

You need to use

var j = jQuery.noConflict();

Before you load the prototype library

<script type="text/javascript" src="http://www.urbanclothing.dk/js/mw_js/jquery.js"></script>

<script type="text/javascript" charset="utf-8"> 
    var j = jQuery.noConflict();
</script>

<script type="text/javascript" src="http://www.urbanclothing.dk/js/prototype/prototype.js"></script>
share|improve this answer
Okay so I just need to reorder my javascripts? Because I can see I do have the " var = jQuery.." <script type="text/javascript" charset="utf-8"> var j = jQuery.noConflict(); </script> – Jens Bredal Mikkelsen Nov 18 '11 at 18:39
Correct, noConflict() doesn't work right when you call it after both jQuery and Prototype have both loaded on the page, you need to load jQuery first, then call noConflict(), and finally load prototype. – Jeff Wilbert Nov 18 '11 at 19:23
Thank you guys! – Jens Bredal Mikkelsen Jan 31 '12 at 14:00

If you use the $.noConflict you can use multiple libraries

Example

$.noConflict();
jQuery(document).ready(function($) {
  // Code that uses jQuery's $ can follow here.
});
// Code that uses other library's $ can follow here.

More info can be found on: http://api.jquery.com/jQuery.noConflict/

The $.noConflict() also returns a jQuery object that can be used for jQuery only, or just use jQuery("") instead of $()

share|improve this answer
I have some jquery noConflict in my header: – Jens Bredal Mikkelsen Nov 18 '11 at 18:35

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