Ticket #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: | |
| Blocking: | Blocked by: |
Description
The Highlight function of the interface plugin throws an error:
jQuery.dequeue is not a function
Change History
comment:2 Changed 5 years ago by torben
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 4 years ago by dmethvin
- Status changed from new to closed
- Resolution set to invalid
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 .
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.

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.