Hi,
I would like to know, how can we get the length of an Object using jquery. I have tried using object.length property, but it gives me result as undefined.
Below is my code where i have been able to get the keys and their values, but what i am looking is to get the length of my object.
jQuery.each(c, function(name, value) {
alert(name + ": " + value);
}); Any help is appreciated.
Thanks.