Created
November 23, 2011 08:34
-
-
Save kitek/1388195 to your computer and use it in GitHub Desktop.
jQuery.post i dodatkowe parametry
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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