Skip to content

Instantly share code, notes, and snippets.

@eqdw
Created December 14, 2010 17:04
Show Gist options
  • Save eqdw/740705 to your computer and use it in GitHub Desktop.
Save eqdw/740705 to your computer and use it in GitHub Desktop.
$("foo").load("herpaderp", function(){/*callback*/});
//becomes
$("foo").load('herpaderp');
& /* callback */
@burke
Copy link

burke commented Dec 14, 2010

$("foo").load('herpaderp') -> (args) {
alert("CALLBACK'D!");
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment