Skip to content

Instantly share code, notes, and snippets.

@jwreagor
Created October 2, 2009 00:22
Show Gist options
  • Save jwreagor/199343 to your computer and use it in GitHub Desktop.
Save jwreagor/199343 to your computer and use it in GitHub Desktop.
jQuery(function($) {
if (typeof $.keys != 'function') {
$.extend({
keys: function(obj) {
var a = [];
$.each(obj, function(k){ a.push(k) });
return a;
}
});
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment