Skip to content

Instantly share code, notes, and snippets.

@RimonEkjon
Forked from jtmorris/gist:5803962
Created August 26, 2014 04:10
Show Gist options
  • Save RimonEkjon/0630f728772baed993be to your computer and use it in GitHub Desktop.
Save RimonEkjon/0630f728772baed993be to your computer and use it in GitHub Desktop.
$(document).ready(function(){
$("form#formId").submit(function() {
inputField = $('#inputFieldId').attr('value');
$.ajax({
type: "POST",
url: "yourpage.php",
cache: false,
data: "inputField ="+ inputField,
success: function(html){
$("#ajax-results").html(html);
}
});
return false;
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment