I found this javascript code a while ago and was working great until some of the browsers have been updated to newer versions. Now the Home screen "locks up" after some users login. I've seen this issue on Macs, IE9, and sometimes Firefox. Any suggestions on how to keep the script from locking the page? Thanks in advance!!!
I found the code here:
http://teachmesalesforce.wordpress.com/tag/javascript/
<html>
<head>
<script type="text/javascript">
var run;
function refresh()
{
var dashboardButton = document.getElementById('db_ref_btn');
dashboardButton.click()
}
window.onload = setInterval(refresh);
</script>
</head>
</html>