Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. document.querySelectorAll("html frameset frameset frame"); //works
  2. document.querySelectorAll("html frameset frameset frame html"); //returns empty node list.
  3. document.querySelectorAll("html frameset frameset frame body5"); //returns empty node list.
  4.  
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7. <frameset >
  8. <frameset >
  9. <frame >
  10. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  11. <html xmlns="http://www.w3.org/1999/xhtml">
  12. <body class="body5">
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement