$(document).ready(function() { // auto refresh page $("#noaa_time").load("./data/noaa_time.txt"); $("#noaa_schedule").load("./data/noaa_schedule.txt"); $("#noaa_img").load("./data/noaa_img.html"); $("#weather").load("./data/weather.txt"); var auto_refresh = setInterval(function() { $("#noaa_time").load("./data/noaa_time.txt"); $("#noaa_schedule").load("./data/noaa_schedule.txt"); $("#noaa_img").load("./data/noaa_img.html"); $("#weather").load("./data/weather.txt"); }, 120000); $.ajaxSetup({ cache: false }); });