Opened 15 years ago
Closed 14 years ago
#2023 closed bug (invalid)
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
Change History (3)
comment:1 Changed 15 years ago by
comment:2 Changed 15 years ago by
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)
comment:6 Changed 14 years ago by
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 .
Note: See
TracTickets for help on using
tickets.
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.