vote up 3 vote down star

I have this code:

dojo.declare("City", null, {
    constructor	: function(cityid, cityinfo){
    }
});

dojo.declare("TPolyline", GPolyline, {
    constructor		: function(points, color){

    },
    initialize		: function(map){
});

What should be it's jQuery equivalent?

flag

53% accept rate
An explanation of what your original code does would be useful. – Soviut Jan 2 '09 at 19:02
It's trivial inside the function bodies and nothing framework specific. I just need to know, how to define these classes with jQuery. – VarunGupta Jan 2 '09 at 19:07

1 Answer

vote up 3 vote down check

I do not think that jQuery provides tools for creating classes and packages out of the box. You can look to see if there is a plugin that does it.

If this turns out to not be true, I would love to know the answer as well! I have used jQuery a bit but use YUI to build packages and classes.

link|flag

Your Answer

Get an OpenID
or

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