vote up 1 vote down star
1

I am trying to use both jQuery and Prototype at the same time.

I've spent hours and hours searching solutions to fix this problem. The most common method I found is this http://docs.jquery.com/Using_jQuery_with_Other_Libraries. However, it didn't work no matter how I place the "jQuery.noConflict()" code.

Can anyone help me with this?

Thanks in advance

Here is my code

<script type="text/javascript" src="/js/swfobject.js">
</script>
<script type="text/javascript" src="/js/layerswitch.js">
</script>
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
</script>
<script type="text/javascript">
    _uacct = "UA-2351815-2";
    urchinTracker();
</script>
<script type="text/javascript" src="/js/jquery-1.3.2.min.js">
</script>
<script type="text/javascript" src="/js/fadeLinks.js">
</script>
<script>
    jQuery.noConflict();
    jQuery(document).ready(function($){
      $("#example").autocomplete(options);
    });
</script>
<script src="js/prototype.js" type="text/javascript">
</script>
<script src="js/scriptaculous/scriptaculous.js" type="text/javascript">
</script>
<script src="js/recommended_items.js" type="text/javascript">
</script>
<script type="text/javascript">
//<![CDATA[
Event.observe(window, 'load', function() {
    var recommended_items = new RecommendedItems('recommended_items', <?="$store_id, $gift_registry_id" ?>);
    recommended_items.setBaseURL('<?=$site_server . SITE_STANDARD ?>');
<?php   if (THIS_PAGE == PRODUCT_PHP) { ?>
    recommended_items.setProduct(<?="$product_id, $category_id" ?>);
<?php   }                               ?>
    recommended_items.fetchItems();
});
//]]>
</script>
flag

3 Answers

vote up 1 vote down

Wrap your jQuery code like so

(function($) {

//$.noConflict(); // I don't below this is needed following this pattern

$(function() // shorthand for $(document).ready()
{
    $("#example").autocomplete(options);
});


})(jQuery);

In essence, $ refers to the jQuery object inside of the function

link|flag
The function passed into jQuery(document).ready gets the jQuery object when it's called. Hence inside the function it should be $. – Annan Mar 20 at 22:39
Thanks a lot. However, it's still not working on my end - -" – Kev Mar 23 at 18:18
@Kev - Have you tried debugging with Firebug? – Russ Cam Mar 23 at 20:57
vote up 3 vote down

You can assign your call to jQuery.noConflict() to a variable and then use that variable throughout when you want to use JQuery. So:

   <script>
    var $$ = jQuery.noConflict();
    jQuery(document).ready(function($){
      $$("#example").autocomplete(options);  //jQuery selector
      alert($("#example".val());  //prototype selector
    });
</script>
link|flag
careful, $$ is used by prototype.js as a CSS selector for DOM elements. – Ben Scheirman Apr 28 at 19:18
vote up 0 vote down

Answer number two worked for me. Thanks

link|flag

Your Answer

Get an OpenID
or

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