Skip to content

Instantly share code, notes, and snippets.

@samarpanda
Created March 23, 2015 08:20
Show Gist options
  • Save samarpanda/95abba4e60e22fae9f31 to your computer and use it in GitHub Desktop.
Save samarpanda/95abba4e60e22fae9f31 to your computer and use it in GitHub Desktop.
Building a quick library :)
var propMap = {
val: "value",
html: "innerHTML"
};
for(var fnName in propMap){
$.prototype[fnName] = function(prop){
return function(){
return this[prop];
}
})(propMap[fnName]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment