Skip to content

Instantly share code, notes, and snippets.

@pimpin
Created November 18, 2011 11:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pimpin/1376186 to your computer and use it in GitHub Desktop.
Save pimpin/1376186 to your computer and use it in GitHub Desktop.
Proposal for CodeScool's JQuery Air Captain's Logs by Greg Pollack
function viewAlternateFlight(e){
e.preventDefault();
var url = $(this).attr('href');
$.ajax(url, {
type: 'GET',
success: function(result){
$('.seating-chart').html(result);
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment