public
Description: jQuery plugin that can inspect any Javascript object
Homepage:
Clone URL: git://github.com/ssoper/jquery-inspect.git
name age message
file README Tue Sep 02 11:38:18 -0700 2008 minor fix to readme [Sean Soper]
file jquery.inspect.js Sat Nov 29 20:04:20 -0800 2008 forgot slash [ssoper]
README
Include the plugin
<script src="jquery.inspect.js"></script>

Call the inspect method
$.inspect('This is a string'); // Uses the alert as output by default

$.inspect([1,2,3,4], 'console'); // The console log can also be utilized

$.inspect(document, 'window'); // A new window can be used for larger objects