window.setTimeout(function() { window.location.reload(); }, 5000);
20 sie 2009
window.setTimeout(function() { window.location.reload(); }, 5000);
function initLinks() {
if (!document.getElementsByTagName) { return; }
var anchors = document.getElementsByTagName("a");
for (var i=0; i<anchors.length; i++){
var anchor = anchors[i];
if (anchor.getAttribute("href") && /^mapa_/i.test(anchor.id)) {
anchor.onclick = function () {
jakas_funkcja(this);
}
}
}
};
setTimeout( function(){ getElementById('msg').style.display = 'none'; }, 3000);
ukrycie, elementu "msg" po 3 sekundach (setTimeout ->; 3000)
var PreOnload =(window.onload)? window.onload : function(){};
window.onload = function(){PreOnload(); SimpleSetup();}