Created
February 4, 2021 16:35
-
-
Save jtFrancisco/270c9f09653975e6daebefc579a85490 to your computer and use it in GitHub Desktop.
This file contains hidden or 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(){ | |
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