Gmail Calendar Documents Reader Web more »
Recently Visited Groups | Help | Sign in
Google Groups Home
jQuery.dequeue is not a function
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  8 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Gordon  
View profile  
 More options Sep 12 2007, 9:10 am
From: Gordon <gordon.mc...@ntlworld.com>
Date: Wed, 12 Sep 2007 06:10:31 -0700
Local: Wed, Sep 12 2007 9:10 am
Subject: jQuery.dequeue is not a function
In a web application I am working on there is a menu that slides down
when you mouseover something and slides back up when you mouseout
again.  If you did this too quickly the result would be that the
animation would bounce up and down quite comically with no way to stop
it other than waiting for the jQuery animation queue to empty
itself.

With jQuery 1.2 it seemed like a solution to this problem was
available, because you can now stop animations.  I tried adding stop()
calls into the code in the belief that aborting the currently
animation before startign a new one would solve my problems.

However, I just got the error message jQuery.dequeue is not a function
http://localhost/js/jquery/interface/interface_drag.js
Line 8

interface_drag.js is basically a barebones version of the jQuery
interface library with just the bare nimimum needed for draggables
built into it.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Stephan Beal  
View profile  
 More options Sep 12 2007, 10:27 am
From: Stephan Beal <sgb...@googlemail.com>
Date: Wed, 12 Sep 2007 14:27:05 -0000
Local: Wed, Sep 12 2007 10:27 am
Subject: Re: jQuery.dequeue is not a function
On Sep 12, 3:10 pm, Gordon <gordon.mc...@ntlworld.com> wrote:

> However, I just got the error message jQuery.dequeue is not a functionhttp://localhost/js/jquery/interface/interface_drag.js
> Line 8

> interface_drag.js is basically a barebones version of the jQuery
> interface library with just the bare nimimum needed for draggables
> built into it.

If we can't see the code, it will be hard to judge where the error is.
Have you got a page where we can see the error in action?

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Gordon  
View profile  
 More options Sep 12 2007, 10:46 am
From: Gordon <gordon.mc...@ntlworld.com>
Date: Wed, 12 Sep 2007 07:46:17 -0700
Local: Wed, Sep 12 2007 10:46 am
Subject: Re: jQuery.dequeue is not a function
Seems to be something caused by an incompatibility with interface.
Once the interface lib and all calls ot it are commented out it
works.

On Sep 12, 3:27 pm, Stephan Beal <sgb...@googlemail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rafael Santos  
View profile  
 More options Sep 13 2007, 2:27 pm
From: "Rafael Santos" <shanex.f...@gmail.com>
Date: Thu, 13 Sep 2007 15:27:45 -0300
Local: Thurs, Sep 13 2007 2:27 pm
Subject: Re: [jQuery] Re: jQuery.dequeue is not a function

I'm getting the same error while testing the release 1.2.
It happens when I fire $.scrollTo()..

On 9/12/07, Gordon <gordon.mc...@ntlworld.com> wrote:

--
Rafael Santos Sá :: webdeveloper
www.rafael-santos.com

    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Rantony  
View profile  
 More options Sep 24 2007, 4:49 pm
From: Rantony <ramarok...@gmail.com>
Date: Mon, 24 Sep 2007 13:49:27 -0700
Local: Mon, Sep 24 2007 4:49 pm
Subject: Re: jQuery.dequeue is not a function
The same error shows up whenever I call Jquery.stop(); my goal is to
prevent all the queued "slow" animations.

R1.2

On Sep 13, 2:27 pm, "Rafael Santos" <shanex.f...@gmail.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christiaan van Woudenberg  
View profile  
 More options Oct 22 2007, 9:34 pm
From: Christiaan van Woudenberg <xiaa...@gmail.com>
Date: Mon, 22 Oct 2007 18:34:58 -0700
Local: Mon, Oct 22 2007 9:34 pm
Subject: Re: jQuery.dequeue is not a function
I've found a few places in the interface plugin libs where the old
version of dequeue is used; they need to be replaced with the new
calls to work. The old version took two arguments, the new version
uses jQuery chainability. For example:

On line 473 of ifx.js change :
                        jQuery.dequeue(elem, "fx");
to:
                        jQuery(elem).dequeue("fx");

On line 49 of ifxhighlight.js change:
                        jQuery.dequeue(this, 'interfaceColorFX');
to:
                        jQuery(this).dequeue('interfaceColorFX');

We're using jQuery and a large set of plugins for a web application,
and these are the only two places I've encountered incompatibilities.

Christiaan

On Sep 12, 7:10 am, Gordon <gordon.mc...@ntlworld.com> wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Dimatrix  
View profile  
 More options Dec 16 2007, 4:58 pm
From: Dimatrix <wingsofpercept...@gmail.com>
Date: Sun, 16 Dec 2007 13:58:39 -0800 (PST)
Local: Sun, Dec 16 2007 4:58 pm
Subject: Re: jQuery.dequeue is not a function
@Christiaan: Many thanks for sharing that detail!

Similar changes are required on:

line 287 of ifxscale.js:
change
        jQuery.dequeue(z.el.get(0), 'interfaceFX');
to
        jQuery(z.el.get(0)).dequeue('interfaceFX');

Regards
Dimitri

On Oct 23, 3:34 am, Christiaan van Woudenberg <xiaa...@gmail.com>
wrote:


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Vinçange  
View profile  
(3 users)  More options Jan 16 2008, 11:34 am
From: "Vinçange" <vinca...@gmail.com>
Date: Wed, 16 Jan 2008 08:34:32 -0800 (PST)
Local: Wed, Jan 16 2008 11:34 am
Subject: Re: jQuery.dequeue is not a function
Your solution is working, but instead of replacing lines in interface,
i'd rather add a function to Jquery :

 ( function( $ ) {
        $.dequeue = function( a , b ){
                return $(a).dequeue(b);
        };

 })( jQuery );

This allows you to use compressed version of interface.js

Vincent.


    Reply to author    Forward  
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »

Create a group - Google Groups - Google Home - Terms of Service - Privacy Policy
©2009 Google