Hi,
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!