Home Articles FAQs XREF Games Software Instant Books BBS About FOLDOC RFCs Feedback Sitemap
irt.Org
#

Q54 How can I tell whether the document is loaded within frames?

You are here: irt.org | FAQ | JavaScript | Frame | Q54 [ previous next ]

if (parent.frames.length != 0) {
  // loaded in frames
}
else {
  // not loaded frames
}

Feedback on 'Q54 How can I tell whether the document is loaded within frames?'

©2018 Martin Webb