Randy Hartmanec
Randy Hartmanec

Reputation: 129

How to implement a new layer over JavaScript framework?

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

Answers (1)

Dustin Laine
Dustin Laine

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

Related Questions