Forums
This topic is locked
go to URL FIREFOX doesnt work!
Posted 30 Aug 2006 13:59:03
1
has voted
30 Aug 2006 13:59:03 Chris Brown posted:
Hi All <img src=../images/dmxzone/forum/icon_smile.gif border=0 align=middle>I have a big problem with a frameset site I am building where the standard MM DW8 go to URL behaviour will not work in FireFox!
It works fine in IE. The simple test I have put up is 3 frames, click the link 'one' in the 1st frame and in IE it targets frame 2 and 3 with new pages. Try it in FF and NOTHING!
Test URL is here...
www.lennon-planning.co.uk/frameset.html
Anyone got a clue why such a basic thing is failing?
thanks.
Chris.
Replies
Replied 30 Aug 2006 17:07:41
30 Aug 2006 17:07:41 Roddy Dairion replied:
in your framesets there are no names only id, for the moment your mainframe has this
<pre id=code><font face=courier size=2 id=code><frameset rows="379,379">
<frame src="one.html" id="one" />
<frameset cols="569,570">
<frame src="two.html" id="two" />
<frame src="three.html" id="three" />
</frameset>
</font id=code></pre id=code>
it should be like this
<pre id=code><font face=courier size=2 id=code>
<frameset rows="379,379">
<frame src="one.html" id="one" name="one"/>
<frameset cols="569,570">
<frame src="two.html" id="two" name="two" />
<frame src="three.html" id="three" name="three"/>
</frameset>
</font id=code></pre id=code>
<pre id=code><font face=courier size=2 id=code><frameset rows="379,379">
<frame src="one.html" id="one" />
<frameset cols="569,570">
<frame src="two.html" id="two" />
<frame src="three.html" id="three" />
</frameset>
</font id=code></pre id=code>
it should be like this
<pre id=code><font face=courier size=2 id=code>
<frameset rows="379,379">
<frame src="one.html" id="one" name="one"/>
<frameset cols="569,570">
<frame src="two.html" id="two" name="two" />
<frame src="three.html" id="three" name="three"/>
</frameset>
</font id=code></pre id=code>
Replied 30 Aug 2006 17:14:31
30 Aug 2006 17:14:31 Chris Brown replied:
thanks, just spotted that myself!
That was DW that wrote the code, grrr.... <img src=../images/dmxzone/forum/icon_smile.gif border=0 align=middle>
That was DW that wrote the code, grrr.... <img src=../images/dmxzone/forum/icon_smile.gif border=0 align=middle>