Skip to content

Instantly share code, notes, and snippets.

@kitek
Created November 23, 2011 08:34
Show Gist options
  • Save kitek/1388195 to your computer and use it in GitHub Desktop.
Save kitek/1388195 to your computer and use it in GitHub Desktop.
jQuery.post i dodatkowe parametry
var doSomething = function(extraStuff) {
return function(data, textStatus) {
//do something with extraStuff
};
};
var clicked = function() {
var extraStuff = { myParam1: 'foo', myParam2: 'bar' };
$.post("someurl.php", someData, doSomething(extraStuff), "json");
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment