Hi All,
I have a file which contains mixed frames.

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<title>Configuration Screens</title>
</head>

 
<frameset rows="71,*" frameborder="0" border="0" framespacing="0">
  <frame name="topNav" src="./CSTopBar.irpt">
<frameset cols="220,*" frameborder="0" border="0" framespacing="0">
	<frame name="menu" src="./ConfigurationMenu.irpt" marginheight="0" marginwidth="0"  >
	<frame name="content" src="/XMII/CM/Testing_AA/Configuration/ProductionCalendar.irpt" marginheight="0" marginwidth="0"  >

</frameset>
</frameset>
</html>


i need to hide the frame "Menu" when i click on an image . and unhide it when i click on it again.

i have attached 2 images . MY screen looks like myscree.bmp and i want something like in want_somethin_like_thi.bmp

Thanks in advance.

use JQuery to accomplish this.

In your configuration menu assign ID on the red surface image or link
On click of image link write

$('#frame_id').hide('slow');
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.