To resolve a conflict between jQuery and prototype,
is there any way other than asking jQuery to resolve via
jQuery.noConflict
and using jQuery instead of $('code').code;
Cant we ask prototype $ to step down and resolve.
|
To resolve a conflict between jQuery and prototype,
and using Cant we ask prototype |
||||
|
|
|
PrototypeJS adds a bit more to the global JavaScript namespace than jQuery does. For example, it adds meanings for: So the advice you've gotten is correct, There's no simple equivalent to |
|||
|
|
|
You should namespace your code anyway, and jQuery gives you a good opportunity to re-claim the
As described here. I don't know if you can make Prototype "step down", but this is a perfectly elegant and working solution. |
|||
|
|
|
I can't find any function in http://api.prototypejs.org/ that will give back the I wonder, what feature that you need so you still using prototype? jQuery might have plugins for that feature. Using 2 libraries in same page will make your page bloated by the size of each library. |
|||
|
|