Created
April 10, 2012 16:42
-
-
Save alejandrolechuga/2352736 to your computer and use it in GitHub Desktop.
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
$(document).ready(function(){ | |
$("somebutton").click(function(){ | |
var one=$("someinput").val(); | |
var two=$("someinput").val(); | |
var three=$("someinput").val(); | |
$.ajax({ | |
url:'process.php', | |
type:'POST', | |
data:{blah1:one,blah2:two,blah3:three}, | |
success:function(result){ | |
$("div#result").html(result); | |
}}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment