hi
I need to redirect the user to another url in 5 seconds without the "click" sound.
you'll notice that this:
produces a "click" sound (maybe only in IE).Code:setTimeout("location.href='http://myurl';",5000);
I want to avoid this sound in my code (I know this can be changed in windows in the user's computer).
can it be done?
