Side navigation
#2023 closed bug (invalid)
Opened December 07, 2007 01:11AM UTC
Closed October 12, 2009 11:51PM UTC
Highlight of interface plugin creates an error
Reported by: | thezapper | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.2.1 |
Component: | plugin | Version: | 1.2.1 |
Keywords: | Highlight interface | Cc: | |
Blocked by: | Blocking: |
Description
The Highlight function of the interface plugin
throws an error:
jQuery.dequeue is not a function
Attachments (0)
Change History (3)
Changed December 07, 2007 03:46AM UTC by comment:1
Changed January 02, 2008 03:51PM UTC by comment:2
interface.js is not compatible with jQ 1.2.x. Anyone interested in using interface.js with jQuery 1.2.x should consider adding this to the top of interface.js:
(function(jQuery){ /* Backwards compatibility to make JQuery 1.2.x to work with interface.js */ jQuery.extend({ dequeue : function(elem, effect) { jQuery(elem).dequeue(effect); } }); })(jQuery);
(from http://theneubeck.blogspot.com/2007/11/jquery-interfacejs-issues.html)
Changed October 12, 2009 11:51PM UTC by comment:3
resolution: | → invalid |
---|---|
status: | new → closed |
This is not a jQuery core bug. Please report plugin bugs to the plugin's author, or ask on the jQuery forums. jQuery UI bugs should be reported on the UI bug tracker, http://dev.jqueryui.com .
It seems that all animation functions of interface.js have that problem. Is there a workaround.
I heard that interface is replaced by jQuery UI. But in the docs I cant find handy functions like that.