Reputation: 129
What's the best way to implement a new layer over JavaScript framework (jQuery, Prototype, ...)?
+------------+
| JavaScript |
+------------+
| jQuery |
+------------+
| MyLibrary |
+------------+
For example...
MyLibrary = MyLibrary || {};
MyLibrary.animate = function(params) {
// some code
}
MyLibrary.insert = function(params) {
// some code
}
Execution
MyLibrary.animate(params);
Thanks for reply!
Upvotes: 0
Views: 176
Reputation: 38533
Why not just extend jQuery, with plugins, to do what you want. Attempting to wrap the entire jQuery library would seem to be a lot of work just to add some functions.
Upvotes: 2