javascript iframe src

andehlu

this modern love
Hey all....

If you go to my site ...theres a problem that I need help with.... www.enterthechapel.com if you click on a link... it loads into the iframe....but if you click it again it will not reload the frame src. Any ideas why this happens, or suggestions on how to fix it? I was thinking of making a random variable on the src load.... so it would be like blog.php?rand=randomlygeneratednumber .... any help is appreciated.
 
It reloads the frame in IE and Firefox but not in Safari.

this is kind of a hack but it made safari reload it.

Code:
	function changeandLoad(n, o){
		document.getElementById('sub_nav').innerHTML = n;
		[b]document.getElementById('theiframe').src = null;[/b]
		document.getElementById('theiframe').src = o;
	}
 
Back
Top