Skip to content

Instantly share code, notes, and snippets.

@a2ikm
Created April 1, 2011 08:45
Show Gist options
  • Select an option

  • Save a2ikm/897898 to your computer and use it in GitHub Desktop.

Select an option

Save a2ikm/897898 to your computer and use it in GitHub Desktop.
$(function() {
var log = (function() {
var textarea = $("textarea#log");
return function(text) {
textarea.val(
text + "\n" + textarea.val()
);
}
})();
log("neko");
log("inu");
log("saru");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment