Note that there are some explanatory texts on larger screens.

plurals
  1. USuser2244036
    primarykey
    data
    text
    plurals
    1. This table or related slice is empty.
    1. COOn my site the iframe doesn't load until you click on a link. To break up the awkward empty space I placed my logo in front of the iframe and the links are on the side of it. I want to hide the logo only when any of the links are clicked because it would otherwise block content. Here is what I was thinking <script type= "text/javascript"> maybe using the function Hide() and the OnClick method with getElementById </java> but I'm not sure everything that I try doesn't work.
      singulars
    2. COI used the jquery code noted by Dolours along with extra coding within my the body of my html code, however when you click on a link then the div disappears but then it reappears once you click on another link. I want it to disappear and stay away. Here is the additional code that I came up with <div id="about"> <li><a href="about.html" target="center table" onClick="document.getElementById('logo').style.display=(document.getElementById('logo').style.display=='none')?'block':'none';">About Me</a></li> </div> Does anyone know how I can make my logo stay away?
      singulars
    3. COI ended up using the code that I noted above except I changed the part within the code noted as 'block' to hide and used no code within the head of my document. Instead I modified all of the links individually. Here is what I came up with... <li><a href="my link to my iframe goes here" target="center table" onClick="document.getElementById('my div that I want to hide goes here').style.display=(document.getElementById('my div that I want to hide goes here').style.display=='none')?'hide':'none';">my link name goes here</a></li> </div>
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload