vote up 1 vote down star
2

I have an old project that I'm resurrecting as it were, and it makes heavy use of a Javascript/moo tools event controller that I wrote, and also a few Javascript OOP components that I wrote. It's very heavily pattern and OOP based. Also the components are well decoupled.

Does jQuery have any features like these? And if so what are they?

Thank you, Andrew J. Leer

flag

2 Answers

vote up 2 vote down check

jQuery is much more focused on a functional style of programming (like JavaScript itself). Personally I find that tacking on 'traditional' OOP features is ugly and pointless. There's plenty of ways to get the same benefits in JavaScript, look up it's prototype style of inheritance, for example.

In short, no :)

link|flag
@thenduks I'm aware of the OOP syntax for both mootools and plain old javascript prototype-based OOP. The MooTools OOP syntax is what led me to believe that jQuery might have something along those lines. I do traditional OOP features for maintainability/front-end team coordination. – leeand00 Mar 19 at 20:14
I suppose that's fair enough, but the answer to your question is still 'no'. jQuery encourages using the tools already provided by JavaScript (prototype-based) along with it's plugin architecture. – thenduks Mar 19 at 20:45
Okay I'll take that answer. – leeand00 Mar 20 at 12:42
vote up 1 vote down

jQuery uses a Plugin Architecture that is very useful for developing re-usable and de-coupled components. This pattern is very useful whether releasing code to the general public or for private projects.

Having said that, jQuery is also javascript! That means that you can use other javascript design patterns that integrate jQuery functionality.

link|flag
Right, I understand that you can use it along with mootools and several other frameworks, but I guess what I'm really asking is does it have it's own type of OOP support like mootools does? – leeand00 Mar 19 at 19:02

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.