Is there a jQuery way to perform iteration over an object's members, such as in:
for (var member in obj) {
...
}
I just don't like this for sticking out from amongst my lovely jQuery notation!
|
Is there a jQuery way to perform iteration over an object's members, such as in:
I just don't like this |
|||
|
|
|
|||||||||||||
|
|
You can use
|
|||||
|
|
|
This method will walk through object properties and write them to the console with increasing indent:
Just pass it the object you want to iterate through:
|
|||
|
|