Tagged Questions

noConflict commonly refers to a jQuery method which relinquishes jQuery's control of the $ variable.

learn more… | top users | synonyms

8
votes
2answers
69 views

jQuery's noConflict: Just a quick thought

The documentation says you can use $.noConflict() like this: jQuery.noConflict(); (function($) { $(function() { // more code using $ as alias to jQuery }); })(jQuery); // other code using $ ...
6
votes
1answer
9k views

Facebook Connect, jQuery UI, and jQuery.noConflict()

I'm trying to build a page on my personal website that both used jQuery and implements Facebook Connect. Unfortunately, the Facebook client API uses the $ token, which means I have to call ...
4
votes
2answers
313 views

How does jQuery's noConflict function work?

Hey, I was just looking at the docs for the noConflict function and it says nothing about how it works (obviously). I just wondered if anyone knew. Does it unset $? (delete window.$?) Any ...
3
votes
5answers
721 views

How to get jQuery Visual Studio 2010 IntelliSense to work inside a noconflict wrapper

I added the vsdoc jquery reference in my js file: /// <reference path="../jquery-1.4.1.vsdoc.js" /> This works fine, but once I write inside a no conflict wrapper... (function ($) { ...
3
votes
6answers
4k views

jquery noConflict not working in IE8 only

I have a website using the prootype framework and I am looking to use a jquery plugin. Everything works just not in IE8. It works in ie7 which amazes me. Any idea what maybe wrong? IE8 gives me ...
2
votes
1answer
145 views

How to use no conflict for two types of jquery scripts

I am not a jQuery person, wish I was. I have fiddled with no conflict, but it still lets only one of the scripts work at a time, not both. I am using a scroll to jquery script and colorbox (like ...
2
votes
4answers
62 views

Replacing $ for jQuery - .addClass method

I'm having an issue trying to fix a conflict between both libraries and have used the noConflict in some sections, however I keep getting the $active is null error I'm specialized in server-side ...
2
votes
1answer
328 views

'Object doesn't support this property or method' shown for jQuery.noconflict()

My jsp loads Mootools, Jquery and then my Javascript file in the same order. In IE8, on first load, it throws error "Object doesn't support this property or method" and the JS doesn't work at all. I ...
2
votes
1answer
217 views

jQuery force older version without changing jQuery selectors with no conflict

I have a page that has jQuery 1.6.2. In some cases I load an app that requires jQuery 1.4.2. I need to force the app to use the 1.4.2 version. I am not able to change the selectors ($ to $$). Is ...
2
votes
1answer
2k views

Prototype /jQuery no conflict IE8 problem with lightview and rotator

I managed to use the noconflict solutions. Everything is working great, except in IE8... I discovered that 90% change it is the javascript on the php itself. I changed the $( to jQuery(. This change ...
2
votes
2answers
319 views

Why doesn't VSDoc IntelliSense work inside of a jQuery no-conflict wrapper?

/// &lt;reference path="jquery-1.5.vsdoc.js" /> // IntelliSense works here. function ($, window, document, undefined) { /// &lt;param name="$" type="jQuery" /> // IntelliSense does ...
2
votes
1answer
295 views

Using multiple jQuery versions problem

I am building control that uses last version of jstree. Problem is that whole system is build using jQuery 1.3.2, but i need to use jQuery 1.4.2 for jstree, also to prevent errors need "$" still ...
2
votes
2answers
169 views

Jquery and Protoype Conflict

<blink> <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/prototype/1.6.1/prototype.js'></script> <script type='text/javascript' ...
2
votes
1answer
2k views

Using the jQuery plugin ColorBox in noConflict() mode

I am using the jQuery plugin ColorBox in a Joomla! theme, and am having a hard time getting it to work in noConflict() mode. I have the following code that calls my jQuery and the noConflict(); call, ...
2
votes
3answers
319 views

resolve prototype & jquery conflict with dynamic script loading

I know that I can use <script type="text/javascript"> jQuery.noConflict(); </script> to resolve the conflict between prototype and jquery after including all jquery and prototype ...
2
votes
3answers
1k views

jQuery $(document).ready(); declaring all the functions in it

Explanation: i have few objects and im declaring them inside $(document).ready(). WHY? because in thous objects i have many jquery methods $(..), obviously they can work outside too, but when i ...
1
vote
1answer
36 views

jQuery UI does not work with Mootools after calling noConflict()

I have a web page requires both jQuery and Mootools to function. The conflict between these 2 libraries were solved when adding jQuery.noConflict(); to the script. But I also want to popup a jQuery ...
1
vote
0answers
123 views

Conflict when using jQuery and prototype, already resolved with jQuery.noConflict() but

I'm using a combination of jQuery, jQuery mobile, prototype and photoswipe. I'm aware that there are conflicts between jQuery and prototype due to the usage of the $ shortcut. So I did a ...
1
vote
2answers
88 views

Unsure of how to implement the noConflict() code

I am currently designing a website where I am using the jQuery ScrollTo plug-in, which uses the jQuery 1.6.2 library. As part of the website, I am required to create an Ajax contact form (I need to ...
1
vote
1answer
94 views

Convert jQuery to Prototype (small code)? [closed]

I have a site that runs n Vivvo CMS. It is based mainly on Prototype. I would like to implement on site this function, but is jQuery based. Allthough i use jQuery.noconflict, it still doesn't run. I ...
1
vote
2answers
405 views

Magento - Not able to resolve - jQuery / jCarousel Conflict Issue

I am trying all ways possible to resolve the JQuery Conflict issue in magento. Verified a few forums too but of no help. I have tried the following: 1.Added jQuery.noConflict(); at the end of the ...
1
vote
3answers
173 views

Need help porting jQuery to noConflict mode

I've done some reading about jQuery noConflict mode, and am still struggling with it a bit. I've got some code to function properly in noConflict mode, but have been unable to get the following to ...
1
vote
4answers
157 views

Injecting jQuery where Prototype exsists - noConflict()

I'm using webkit only. I need to inject jQuery into a page that already has prototype loaded. I'm using this code to load jQuery. (you can try in console) var s = document.createElement('script'); ...
1
vote
1answer
416 views

jQuery noconflict() not working

The first script is not working, the second is. <script type="text/javascript"> var pageHits = [30,60,22,5,60,88,102]; var rssHits = [33,45,121,23,55,35,77]; var xAxis = ['Jan ...
1
vote
1answer
117 views

Is it possible to override/Update Prototype version 1.4 to version 1.7 on another site via javascript?

(I'm not quite sure how to title this question, feel free to edit). I'm embedding a JS widget on another website that uses Prototype.js Version 1.4. I'm using jQuery in my widget, so it's running ...
1
vote
2answers
123 views

jQuery: How to save my version of jQuery before third party script loads different version of jQuery?

Similar question for reference: How do I run different versions of jQuery on the same page? I have a situation where I have my own version of jQuery(1.4.2), with all sorts of custom functions ...
1
vote
2answers
840 views

Not sure how to use jQuery noconflict function

I've been working on this site for the past two weeks and everything has been running smooth until now. I have conflicting javascripts and all though I know what method to use to solve the problem ...
1
vote
1answer
985 views

jQuery .noconflict with prototype not working in (you guessed it) IE

On my new customer page, I have successfully implemented a jQuery show/hide toggle alongside a Prototype script using jQuery's .noconflict. (Thanks to all for answers!) But as the world of the net ...
1
vote
1answer
1k views

How to make simple example to explain jQuery.noConflict() with prototype?

How to make simple working (only if i remove/comment prototype) example to explain jQuery.noConflict() with prototype? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" ...
1
vote
2answers
962 views

Jquery + Prototype in noConflict() mode, Array.prototype.indexOf broken

i'm trying out this jquery plugin http://plugins.jquery.com/project/stylish-select-box/ it works good but with prototype + jquery in noConflict mode this function broke others scripts ...
0
votes
0answers
9 views

jQuery Code Hinting in Dreamweaver with noconflict

Currently evaluating Dreamweaver CS 5.5. I like much of it - but wondering about the jQuery code hinting. I like that feature quite a bit, but problem is, we use the noConflict() feature, like this: ...
0
votes
3answers
36 views

jquery noConflict issue

I am trying to use Lightbox plugin but with jquery there is a conflict and gone through some articles and find out to get work around this but I have no luck in implementing it. Here is my code: ...
0
votes
1answer
52 views

Calling jQuery on (window).load and passing variable for 'No Conflict' code

I recently learnt, the very handy trick, that lets you pass the $ in the jQuery function so that you all the contained code is in a No Conflict mode. The advantage being that you can write all the ...
0
votes
0answers
63 views

jquery conflict with lightbox and carousel

The popup lightbox on http://dev.theworld.org is preventing the carousel titles and rotation from working correctly. Any suggestions? You can see it working correctly (sans lightbox) at ...
0
votes
0answers
103 views

Sortable Masonry with Lighbox: a jQuery & prototype.js - creating image sets

I've got this thing I'm working on which in an ideal world would combine masonry with lightbox, and maintain the last one's ability to had image sets > so I can neatly have my filtered results as a ...
0
votes
2answers
94 views

How do you implement the jQuery noConflict() method correctly?

I can't get the noConflict() method to work properly. I've been searching online for hours and can't seem to get a solid answer. Here's what I have in my header... <script type="text/javascript" ...
0
votes
0answers
56 views

Simplemodal plugin jquery, elements in the modal are disabled on first load, due to mootools conflict

I am trying to load a div containing some input checkboxes and buttons using Simplemodal jquery plugin. All input fields are disabled when the modal window is opened first time. While subsequently ...
0
votes
2answers
67 views

Jquery with other libraries

I am getting an error message as element.dispatchEvent is not a function. I am using jquery with prototyp in rails 3 application. In my layout file, i have added the js files as below ...
0
votes
1answer
72 views

Load Galleria when navigating to specific Jquerytools tab

I'm having trouble to integrate the Galleria image gallery plugin onto one of my Jquerytools tabs. When navigating directly to the page with Galleria (example: ...
0
votes
0answers
52 views

dynamic jquery scrollbox

I have a problem with dynamic jquery scrollbox. I am trying to make script like in facebook which updates content when scrolling down the page. Here is my code: jQuery.noConflict(); (function($) { ...
0
votes
0answers
39 views

s3Slider and gooeymenu running on same page

I am trying to run the following on the same page 1 a animated menu from http://www.dynamicdrive.com/dynamicindex1/gooeymenu.htm 2 a slider from http://www.serie3.info/s3slider/ The problem I have ...
0
votes
1answer
49 views

Jquery & prototype error

Im trying to use colorbox coupled with apimenu with a prototype script. The api menu & colorbox load correctly but the prototype script ceases to load. Url for colorbox / apimenu below. Please ...
0
votes
1answer
78 views

How to access jQuery after jQuery.noConflict(); - not namespaced

I am in big trouble at the moment. We have a huge JS library that I need to maintain. It uses internally jQuery 1.6.2. The client where we installed the library uses jQuery 1.3.4 and the fancybox ...
0
votes
1answer
57 views

jQuery and MooTools conflict with jQuery plugin

I have to use both MooTools and jQuery in a single page. I am using the featureCarousel jQuery slider plugin. There is a conflict between jQuery and MooTools. But the animation is not working ...
0
votes
0answers
97 views

Conflict between Lightbox2 and JQuery Dropdown Menu

As a note, I have been using JQuery plugins without issues on various projects, but I do not have an understanding of the mechanics of why JQuery works. Before posting this question I have read ...
0
votes
2answers
117 views

Issue Regarding jQuery.noConflict with I.E. Browser

i have an issue regarding jQuery.noConflict with I.E. browser version 7, version 8, and version 9 compatibility view. in rest browser this script work in flow but above browser execute script totally ...
0
votes
2answers
129 views

JQuery conflict in Joomla 1.5 site

I'm having some sort of a conflict with JQuery. I'm developing the site in Joomla, which appears to be complicating this issue a little more. Site is at http://www.deepwaterchurch.com/cms I had an ...
0
votes
0answers
91 views

Jquery conflict does not work

I've seen this question being asked a lot of times, but I'd tried almost all methods and I'm not sure why its not working for me. I have .js files of mootools 1.1 in the head section <head> ...
0
votes
1answer
186 views

Using Backbone.js with _.noConflict()

I'm looking to use Backbone.js with a namespaced underscore library. Does anyone know how I can tell Backbone to refer to say, underscore and not _ Thanks! Matt
0
votes
1answer
121 views

Silverstripe Userforms Prototype and jQuery conflicts

I'm having a nightmare with javascript at the moment which hopefully someone can help out with. I'm using the Userforms module, which I've also added my own jQuery code to such that the default value ...

1 2