I have a javascript countdown timer that displays text when it expires. I would like to have it redirect to a different URL instead. Does anyone have any thoughts on how I can alter the code to achieve this? Your help is appreciated...
expire: function(idxs){
for(var x in idxs) {
this.display(this.counts[idxs[x]], "Your timer is expired...");
this.counts.splice(idxs[x], 1);
}
},