prototypejs - How to mimic jQuery.live(), or use 2 jQuery versions in the presence of a Prototype library? -
We are providing our content inside an HTML 'cover' provided by the client. That HTML cover has a reference of jQuery 1.2.6 so that I'm still using it for my jQuery functionality.
The problem I am experiencing is that I am dynamically interpreting the content for which the click event associated with it is required. The click event is associated with elements of $ (document) .ready () Like, I need the function of the .live () function which is available in version 1.3+.
So I'm wondering what are my options?
Is there any way to easily duplicate the functionality of .live () so that I do not need the function provided by the jQuery library?
Do I need to include a new jQuery library with my content? This is not ideal because it is the cause of conflicts that need to be managed, and we are already struggling with prototype libraries that have been included in the following line from someone else:
jQuery document) .ready (function ($) {
Can anyone show me an easy way to do this?
.. or do I have to return it to the client so that they can upgrade their jQuery Is it? I do not know what will happen.
Can anyone recommend a solution to this problem? Thanks
Can you use the Livequar plugin? Work with that version.
Comments
Post a Comment