Skip to content

Instantly share code, notes, and snippets.

@jtFrancisco
Created February 4, 2021 16:35
Show Gist options
  • Save jtFrancisco/270c9f09653975e6daebefc579a85490 to your computer and use it in GitHub Desktop.
Save jtFrancisco/270c9f09653975e6daebefc579a85490 to your computer and use it in GitHub Desktop.
$(document).ready(function(){
setTimeout(function(){
$.ajax({
url: "/flight_searches/flight_offer_results",
cache: false,
success: function(html){
$("#flight_offer_results").append(html);
}
});
}, 100);
setTimeout(function(){
$.ajax({
url: "/flight_searches/airline_filter",
cache: false,
success: function(html){
$("#airline_filter").append(html);
}
});
}, 200);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment