Skip to content

Instantly share code, notes, and snippets.

@A-Programmer
Created November 16, 2017 21:20
Show Gist options
  • Save A-Programmer/5cd5336450f8fc8c376e1c55b7fa1df6 to your computer and use it in GitHub Desktop.
Save A-Programmer/5cd5336450f8fc8c376e1c55b7fa1df6 to your computer and use it in GitHub Desktop.
ajax get
$(dosument).ready(function()
{
$.ajax()
{
url:'url of action',
type:'GET',
success: function(data)
{
$('#divid').html(data);
},
error: function()
{
alert('error');
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment