Created
October 1, 2011 23:47
-
-
Save nelsonenzo/1256823 to your computer and use it in GitHub Desktop.
JQuery Tools Fix
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
First include JQuery tools: | |
<script src="http://cdn.jquerytools.org/1.2.6/jquery.tools.min.js"></script> | |
Then rename all it's functions | |
<script> | |
$.fn.jqt_tabs = $.fn.tabs; | |
$.fn.jqt_scrollable = $.fn.scrollable; | |
$.fn.jqt_tooltip = $.fn.tooltip; | |
$.fn.jqt_overlay = $.fn.overlay; | |
delete $.fn.tabs; | |
delete $.fn.scrollable; | |
delete $.fn.tooltip; | |
delete $.fn.tooltip; | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment