Link to home
Start Free TrialLog in
Avatar of cbrick04
cbrick04

asked on

Close a frameset for certain pages

Using a frame set as follows to play an MP3 file, how can it be closed for certain pages , or how can I put a control to turn it off?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
   "http://www.w3.org/TR/html4/frameset.dtd">
<HTML>
<HEAD>
<TITLE>A simple frameset document</TITLE>
</HEAD>
<FRAMESET cols="0%, *">
      <FRAME src="pagewithmusic.html">
      <FRAME src="yourwebsite.html">
  </FRAMESET>
  <NOFRAMES>
      <P>Frames not supported
  </NOFRAMES>
</FRAMESET>
</HTML>
Avatar of LeeKowalkowski
LeeKowalkowski
Flag of United Kingdom of Great Britain and Northern Ireland image

You can make the links to the pages where the music that is not required overwrite the frameset, e.g. <a href="pagewithoutmusic.html" target="_top">Go somewhere else</a>.

--
Lee
ASKER CERTIFIED SOLUTION
Avatar of ravi_raj123
ravi_raj123
Flag of United Arab Emirates image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial