$.isPlainObject()
$.isPlainObject()はプレーンなオブジェクトかどうかを判定するメソッドです。
プレーンオブジェクトとは{}やnew Object()を利用して生成されたオブジェクトのことで、ブラウザが持つオブジェクトやDOMオブジェクトなどは含まれません。
$.isPlainObject(document.location);//false
$.isPlainObject({bar:"foo"});//true
jQuery 1.4.0での追加/変更$.isPlainObject()はjQuery 1.4.0で追加されたメソッドです。
参考URL
jQuery.isPlainObject() | jQuery API Documentation
登録日 : 2013年07月12日 最終更新日 : 2013年7月12日