Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

objects in jQuery

I am having trouble understanding the meaning and more importantly the concept of an object as it relates to jQuery. I understand the basics that its a collection of data that comes in two forms, properties and methods but I kind of get lost on how it works beyond that. Can anyone point me to some good tutorials that maybe helped you understand? I'm hoping to "Get it" once and for all.

Many many thanks for your help! =]

like image 635
chainwork Avatar asked Dec 22 '22 03:12

chainwork


2 Answers

Remember that jQuery is just a library that runs in Javascript; what you are talking about is the concept of an object in Javascript.

The authority on this kind of thing is Douglas Crockford. I recommend this video as an introduction: http://video.yahoo.com/watch/630959/2974197

like image 62
Jacob Mattison Avatar answered Jan 08 '23 19:01

Jacob Mattison


I always found this advanced JavaScript tutorial by John Resig to be very helpful.

like image 35
Hooray Im Helping Avatar answered Jan 08 '23 17:01

Hooray Im Helping