Skip to content

Instantly share code, notes, and snippets.

@EstebanFuentealba
Created November 15, 2013 21:09
Show Gist options
  • Save EstebanFuentealba/7491675 to your computer and use it in GitHub Desktop.
Save EstebanFuentealba/7491675 to your computer and use it in GitHub Desktop.
jQuery.ajax({
url:"http://servel.biobiochile.cl/api/2013/presidente/PRE.json?callback=?&r="+Math.random(),
dataType:"json",
jsonpCallback:"PRE_BBCLServelRefresh",
success:function(json){
if(json.continue) {
/* acá codigo */
timerServel = setTimeout(fnServelUpdate, optionsServel.timer);
} else {
clearTimeout(timerServel);
timerServel = null;
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment