jQuery.isEmptyObject()

jQuery.isEmptyObject( object ) Returns: Boolean

Description: Check to see if an object is empty (contains no properties).

  • version added: 1.4jQuery.isEmptyObject( object )

    objectThe object that will be checked to see if it's empty.

As of jQuery 1.4 this method checks both properties on the object itself and properties inherited from prototypes (in that it doesn't use hasOwnProperty).

Example:

Check an object to see if it's empty.

jQuery.isEmptyObject({}) // true
jQuery.isEmptyObject({ foo: "bar" }) // false