How do I re-run the js file when the div reloads?
In the head, I have this script:
<script type="text/javascript">
var auto_refresh = setTimeout(
function ()
{
$('#scoreboard').fadeIn("slow");
}, 3000); // refresh every 10000 milliseconds
</script>
In the body, I have this div and js file:
<div id="scoreboard">
<script language="javascript"
src="http://www.sportsnetwork.com/aspdata/clients/cbaskscoreboard.aspx?team=B87">
</script>
</div>
I want to rerun the javascript file on a timed interval. Can it be done?