Skip to content

Instantly share code, notes, and snippets.

@jkodroff
Created September 17, 2014 17:29
Show Gist options
  • Save jkodroff/c04ed107d30a75cb096f to your computer and use it in GitHub Desktop.
Save jkodroff/c04ed107d30a75cb096f to your computer and use it in GitHub Desktop.
var myFunction(someObject, the, arguments) {
};
// with tap
$('selector')
.tap(myFunction, the, arguments)
.hide();
// without tap
var $collection = $('selector')
foreach (var thing in $collection)
myFunction(thing, the, arguments);
$collection.hide()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment