I have here code, in JavaScript which presents simple countdown timer
var Timer;
var TotalSec;
function CreateTimer(Timer ID, Time){
Timer = document.getElementByID(Timer ID);
TotalSec = Time;
UpdateTimer() window.setTimeout("Tick()", 1000);
}
function Tick() {
if (TotalSeconds <= 0) {
alert(message)
return;
}
TotalSeconds -= 1;
UpdateTimer() window.setTimeout("Tick()", 1000);
}
function UpdateTimer() {
Timer.innerHTML = TotalSeconds;
}
and I also have code which is showing a msg when right click is activated
var message="Right click? You are using it wrong! Thank you for your understanding.";
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}
if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
Ok, now, what I want to do is, when somebody makes right click on website, it triggers my 5 sec timer and shows msg: "Your bla bla bla bla will end in +(how many seconds)", and when counter reaches 0, it is supposed to set msg:"Nah I`m just kidding bla bla bla..."
Can anybody help me please? Basically, I have everything, just don't know how to connect all things. I'm creating something for a friend of mine for one blog on blogger.com and would like to see it working :)
Ok I've changed my code a little bit, but now I'm getting: Uncaught TypeError: Cannot set property
innerHTML
of nullHow can I solve this one?