Last active
August 29, 2015 14:01
-
-
Save linkmckinney/52040ea99db826bb7175 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
/** | |
* @author Link.McKinney | |
*/ | |
$(document).ready(function(){ | |
//executes function after page loads in browser | |
startRefresh(); | |
//creates timer, gets data from page and updates the #myupdate_div dic | |
function startRefresh() { | |
setTimeout(startRefresh, 1000); | |
$.get('includeData.cfm', function(data) { | |
$('#myupdate_div').html(data); | |
}); | |
}; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment