Eric Martin a écrit :
Like it was mentioned above, the noConflict() call has to come right
after loading jQuery and before loading the other libraries.
-Eric
I just make a typo in my previous message
<script type="text/javascript" src="/js/jquery-1.3.2.min.js"></script>
<script>
<!--
var $j = jQuery.noConflict();
//-->
</script>
<script type='text/javascript' src='/js/prototype.js'></script>
<script type='text/javascript' src='/js/scriptaculous.js?
load=effects'></script>
it doesn't work.
Regards,
PYT
On Mar 31, 11:54 pm, pyt <paya...@gmail.com> wrote:
Hi,
I have the same problem with FF2 on my eeePC (linux)
The code is
//---------------
<script type='text/javascript' src='/js/prototype.js'></script>
<script type='text/javascript' src='/js/scriptaculous.js?
load=effects'></script>
<script type="text/javascript" src="/js/jquery-1.3.2.min.js"></script>
<script>
<!--
var $j = jQuery.noConflict();
//-->
</script>
//--------------------
If i do something like that (load jquery before prototype and
scriptacoulos):
//---------------
<script type="text/javascript" src="/js/jquery-1.3.2.min.js"></script>
<script type='text/javascript' src='/js/prototype.js'></script>
<script type='text/javascript' src='/js/scriptaculous.js?
load=effects'></script>
<script>
<!--
var $j = jQuery.noConflict();
//-->
</script>
//--------------------
It doesn't work on ff3 and ff2.
Is there a solution ? it is a bug with noConflict ?
Regards,
PYT