Skip to content

Instantly share code, notes, and snippets.

@dkdndes
Last active January 20, 2017 15:05
Show Gist options
  • Save dkdndes/9131545 to your computer and use it in GitHub Desktop.
Save dkdndes/9131545 to your computer and use it in GitHub Desktop.
Simplify jQuery $('#id').method() to just object.method()
$.objectify = function objectify(prefix) {
prefix = prefix || '';
$('[id]').each(function (j, item) {
window[prefix + item.id] = $('#' + item.id);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment