Try this:

1) add var $j = jQuery.noConflict(); just after you load the main
jquery library

2) replace all the instances of $ to $j in your script and in all the
plugins that you use

That's it

On Jun 28, 8:35 am, Rey Bango <[EMAIL PROTECTED]> wrote:
> Hi Reinder,
>
> Remove the true param from noConflict and that should resolve your issue.
>
> Rey...
>
> Reinder Brouwer wrote:
> > I want to use JQuery beside moootools with 2 plugins: slimbox &
> > tooltips.
> > JQuerys validation is cooler to me! :)
> > My problem is when I use slimbox by calling it with $ mootools is
> > disabled, so I found out the noconflict method. My problem is:
> > It seems doesnt work?
> >http://tableless.vliegervaringen.com/
>
> > This:
> > <script type="text/javascript">
> > jQuery.noConflict(true);
>
> > jQuery(document).ready(function(){
> > jQuery("#commentForm").validate({
> >   rules: {
> >     norobot: {
> >       required: true,
> >      number: true,
> >       minlength: 4,
> >      maxlength: 4
> >     }
> >   }
> > });
> > });
> > </script>
> > will not work while:
> > <script type="text/javascript">
> > $(document).ready(function(){
> > $("#commentForm").validate({
> >   rules: {
> >     norobot: {
> >       required: true,
> >      number: true,
> >       minlength: 4,
> >      maxlength: 4
> >     }
> >   }
> > });
> > });
> > </script> will return into an proper validation of the form, BUT in
> > the latest case my slimbox and tooltips got disabled? In the first
> > case so with noconflict my validation doesnt work, but my slimbox and
> > tooltips do.
> > Here is my complete source:
> >http://tableless.vliegervaringen.com/

Reply via email to