function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
HemanthrulezHemanthrulez 

URGENT! Hide/SHOWLeft Iframe

Hi,

 

I have 2 iframes in my visualforce page.  I have developed a functionality to hide/show left frame using standard HTML buttons (onclick). The whole page fits in a <table> tag in which these buttons occupy the middle column. The look and feel is little messy.


Any other approach to develop this functionality, like... if I hover the mouse on the right frame, the left should be hidden without using buttons.

 

 

Thanks

Hemanth

harsha__charsha__c

You can use javascript for this as followed..!

 

 

1. call a function onHover

 

2. in the method set the respective tag's display as none

     

         as,   function dontshowtable()

                  {

                          document.getElementById('frameId').style.display = 'none';

                  }

 

Try this one, If this works well and good..!

 

Let me know if you have any concerns