jQuery doesn't have built-in OO class support, but you can easily
continue to use the Prototype idiom. You would just include the Class
def:
var Class = {
create: function() {
return function() {
this.initialize.apply(this, arguments);
}
}
}
And then use it the way you're accustom
anybody?
On Apr 27, 12:08 pm, mmjaeger <[EMAIL PROTECTED]> wrote:
> Hello
>
> I'd like to get started with jquery and I was wondering whether
> somebody could give me a little hand or point me into the right
> direction.
>
> How would I properlyconvertsomething like the following to jquery:
>
>
2 matches
Mail list logo