PDA

View Full Version : How do you get rid of the "Click" sound in IE?



Moh
04-10-2007, 03:07 PM
Well in IE when a page refreshes such as radio stats it makes a click sound, is there any way in the code you can make it so it dosnt make this click sound?

Galaxay1
04-10-2007, 03:07 PM
Try tools > options?

Moh
04-10-2007, 03:10 PM
Try tools > options?
I mean for the users of the site, if there listening to radio they dont wana be hearing "click" every 30 secs

Galaxay1
04-10-2007, 03:12 PM
Oh right, sorry. "http://airhabbo.com/googleit.gif" :P I dont think there is though, im assuming you mean the click of the page refreshing?

Moh
04-10-2007, 03:24 PM
Oh right, sorry. "http://airhabbo.com/googleit.gif" :P I dont think there is though, im assuming you mean the click of the page refreshing?

I have googled it but it was coming up with what u said :(

Charlie
04-10-2007, 03:26 PM
www.firefox.com

Recursion
04-10-2007, 03:28 PM
www.firefox.com (http://www.firefox.com)

The best browser around tbh.

Galaxay1
04-10-2007, 03:30 PM
He asked for help how to sort it not for a new browser :rolleyes:

Aflux
04-10-2007, 03:50 PM
He asked for help how to sort it not for a new browser :rolleyes:
They gave him an alternative ":rolleyes:"

Moh
04-10-2007, 03:58 PM
I do use firefox, but not every one does.

Joe!
04-10-2007, 04:17 PM
Just say that this site is best viewed in Mozilla Firefox on your website?

craigg.
04-10-2007, 04:17 PM
Start, Control panel. Then go to your sound/audio properties and click "sounds". On there, there should be a sound called "Start Navigation", simply set that to none and hit OK.

IE is very annoying with that sound I must say.

Oni
04-10-2007, 04:19 PM
No ones really listening he just doesnt want it on his site, as in for anyone.

Invent
04-10-2007, 04:22 PM
No you can't disable it on your website I'm afraid.

Simple, don't use a meta refresh, I'm pretty sure AJAX Requests don't make a clicky sound?

Florx
05-10-2007, 03:38 PM
Yeah AJAX doesn't make a clicky noise!

Nli.
05-10-2007, 04:49 PM
Make a new file in notepad or any other editor called "refresh.js" And copy the below code.


window.onload = doLoad;
function doLoad()
{
setTimeout( "refresh()", 30*1000 );
}
function refresh()
{
window.location.reload( false );
}

Then in your stats file.. copy this..

<script type="text/javascript" src="refresh.js"></script>

make sure they are BOTH in the same folder.. That should work, i haven't actually used this method before but i know of it.

Moh
05-10-2007, 05:28 PM
Make a new file in notepad or any other editor called "refresh.js" And copy the below code.


window.onload = doLoad;
function doLoad()
{
setTimeout( "refresh()", 30*1000 );
}
function refresh()
{
window.location.reload( false );
}Then in your stats file.. copy this..

<script type="text/javascript" src="refresh.js"></script>make sure they are BOTH in the same folder.. That should work, i haven't actually used this method before but i know of it.

Ty Works a star :)

Want to hide these adverts? Register an account for free!