I am using prototype + jquery on a site. Now the prototype plugins use $. I do not want jQuery to use $. How do I make jQuery not register the $. Also, how do I then call jQuery functions.
Thank you for your time.
|
I am using prototype + jquery on a site. Now the prototype plugins use $. I do not want jQuery to use $. How do I make jQuery not register the $. Also, how do I then call jQuery functions. Thank you for your time. |
|||
|
|
|
The jQuery documentation has an article on how to make jQuery play nice with other libraries. This is one suggested way from that article:
|
|||
|
|
|
|||
|
|
You can use |
|||
|
|
|
this is what I use if it's only a small bit of jQuery
|
|||
|
|
|
You can use jquery's noConflict method:
now onwards you can use jQ in place of "$" to work with jQuery functions and use $ for prototype. |
|||
|
|