Not sure I quite understand the suggestion (please explain). If I end up revisiting the jquery code, I'll probably just use the jquery.noConflict() function and reassign the embedded jquery $() refernces to something different. Too bad I can't do the same with the prototype code; there's a lot less of it, and I'm in control of the scripts... the jquery changes have me at the mercy of the portal developer.
On Feb 6, 12:24 pm, Matt Foster <[email protected]> wrote: > This is completely theoretical, and probably even more ludicrous as I > think of it being plausible cross-browser... > > But in theory if you did something like this > > var A = function(){ alert("First definition");} > > A(); > > var A = function(){ alert("Second definition"); }; > > A(); > > Would behave as such, so that you could load jquery and all dependent > scripts first, then load prototype and all of its dependent scripts > subsequent to that and get away with it? Give it a shot and let us > know... > > On Feb 6, 2:22 pm, david <[email protected]> wrote: > > > > > Hi dizzyjay, > > > the noConflict function works great, but the problem I think is that > > you rename the jquery object, so all other developper will have to > > change there scripts to no use anymore the $ function (by defaul > > $==jquery). > > > some times ago, a protosafe library was developped, but it has > > stopped .... so I'm not sure there is a way to resolve your problem. > > > -- > > david > > > On 6 fév, 00:48, dizzyjay <[email protected]> wrote: > > > > Is there a way to resolve this conflict within prototype? My portal > > > uses jQuery and I'm the only developer with a preference of > > > prototype.js. I've tried the jQuery.noConflict() with no luck. I > > > don't want to abandon my prototype.js skillset for jQuery but it's > > > looking like I'm the one that needs to find the workaround if I want > > > to continue with prototype.js > > > > (NOTE: I've also tried the find/replace '$' with '_$' method.... > > > didn't work- broke a good amount of functionality) > > > > thanks in advance > > > dj- Hide quoted text - > > - Show quoted text - --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
