Sorry, Katya,...I'm not much of a programmer and couldn't figure out which code on the page to use and then how to customize it for my needs. It did give me a clue....I tried this below....but it didn't work. Am I close?
window.onload = function() {
var counter = 3;
var interval = setInterval(function() {
counter--;
$("3").text(counter);
if (counter === 0) {
redirect();
clearInterval(interval);
}
}, 3000);
};
function redirect() {
site_menu.submit();
}
This was the code on the page you suggested. I don;t know how to change it to navigate to the site_menu instead creating a text pop-up
var timeoutID;
function delayedAlert() {
timeoutID = window.setTimeout(slowAlert, 2000);
}
function slowAlert() {
alert("That was really slow!");
}
function clearAlert() {
window.clearTimeout(timeoutID);
}
Any help you can provide is appreciated.
Thanks,
Randy