ajax php show random questions

Solutions on MaxInterview for ajax php show random questions by the best coders in the world

showing results for - "ajax php show random questions"
Emily
09 Sep 2017
1function getNewQuotes() {
2   $.get("random_quotes.php", function(data) {
3       // set the response from random_quotes.php to this div
4       $("#quotesDiv").html(data);
5   }); 
6}
7
8// 60000 milliseconds = 60 seconds = 1 minute
9var t=setTimeout("getNewQuotes()", 60000);
10
similar questions
queries leading to this page
ajax php show random questions