javascript - clicking on links after closed iframe not available -


have index.html, , opening iframe content of other page "test.html" on top of it. iam closing iframe, changing url @ moment

js:

  function confirmcloseiframe() {              doit = confirm('wanna close iframe?');              if (doit) {                 window.location = "/index.html"             }         } 

links of index.html behind iframe not more clickable. why?

thats because iframe still overlay since haven't moved/removed iframe actual page content...therefore not clickable.

you need either move iframe or remove or hide it.


Comments

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -