Skip to content

Instantly share code, notes, and snippets.

@honbin
Created September 21, 2013 05:35
Show Gist options
  • Save honbin/6647530 to your computer and use it in GitHub Desktop.
Save honbin/6647530 to your computer and use it in GitHub Desktop.
(function($){
$(window).bind("beforeunload", function(e) {
var params = {};
$(":input").each(function(){
params[this.name] = this.value;
});
$.post("/hoge", params, function(result) {
//success
});
});
}(jQuery));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment