Hi Rey

The jquery is 1.2.6 and scriptaculous is v1.7.0

Also an important note is: with prototype there's seem to be no problem, its
when scriptaculous is added when everything is screwed. :( I've been
debugging line by line (with firebug) the jQuery selector function and
there's a time when it jumps to prototype.js code... I'll start again to see
exactly where it happens but something related to bind() I think so.

Thanks for the help! :)

I think you can test with a file like this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
<html xmlns="http://www.w3.org/1999/xhtml"; dir="ltr">
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
/>
        <title>DEMO</title>
        <script type="text/javascript"
src="/javascripts/jquery-1.2.6.js"></script>
        <script type="text/javascript">
            $$j = jQuery.noConflict(true);
        </script>
        <script type="text/javascript" src="prototype.js"></script>
        <script type="text/javascript"
src="/javascripts/scriptaculous.js"></script>
        <script type="text/javascript">
            $$j(document).ready(function(){
                $$j("a").remove();
            });
        </script>
   </head>
    <body>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
        <a href="#askdj">Something</a>
    </body>
</html>

Then fire some $$('a') on firebug console and you will see what I'm talking
about.

Regards

Reply via email to