ben3001 0 Posted March 7, 2006 Report Share Posted March 7, 2006 the problem is on this site http://medussa.atspace.com/medussa.htmlcalendar-->click any month--> click any eventthe calendar page uses 2 iframes, for some reason firefox will not allow that and opens the link up in a new window, where as IE happily opens the page in the next iframeanyone got any ideasthanks in advanceben Quote Link to post Share on other sites
sbrownii 0 Posted March 7, 2006 Report Share Posted March 7, 2006 Your html code has you nesting the "info" iframe inside the "content" iframe and not even closing one of them - probably just a mistake... That is your problem... IE forgives you ... FF doesn't...Just fix it so that you have to separate iframe elementsYour original code (formatted for easy viewing): <center> <iframe src="../months/blank.htm" name="calendar" frameborder="0" scrolling="auto" width="200" height="230"></center> <iframe src="../months/blank.htm" name="info" frameborder="0" scrolling="auto" width="200" height="230"> </iframe> How it should be: <center> <iframe src="../months/blank.htm" name="calendar" frameborder="0" scrolling="auto" width="200" height="230"> </iframe></center> <iframe src="../months/blank.htm" name="info" frameborder="0" scrolling="auto" width="200" height="230"> </iframe> Quote Link to post Share on other sites
ben3001 0 Posted March 8, 2006 Author Report Share Posted March 8, 2006 thanks for your help mate. the simplest things are not always obvious Your html code has you nesting the "info" iframe inside the "content" iframe and not even closing one of them - probably just a mistake... That is your problem... IE forgives you ... FF doesn't...Just fix it so that you have to separate iframe elementsYour original code (formatted for easy viewing):<center> <iframe src="../months/blank.htm" name="calendar" frameborder="0" scrolling="auto" width="200" height="230"></center> <iframe src="../months/blank.htm" name="info" frameborder="0" scrolling="auto" width="200" height="230"> </iframe> How it should be: <center> <iframe src="../months/blank.htm" name="calendar" frameborder="0" scrolling="auto" width="200" height="230"> </iframe></center> <iframe src="../months/blank.htm" name="info" frameborder="0" scrolling="auto" width="200" height="230"> </iframe> <{POST_SNAPBACK}> Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.