Children not showing properly while working with webstorm ide and using developer tools

9 hours ago 1
ARTICLE AD BOX

I have a relatively simple problem that's absolutely killing me, working through a basic web development course and for whatever reason I am not seeing my links as children displayed in the document in the console log, is this something having to do with using a local host and the webstorm IDE or something else

console.dir(document); <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Advanced JavaScript</title> <script src="app.js" defer></script> </head> <body> <h1>Hi there!</h1> <p> This is a <a href="#">link</a> </p> <p> This is a <a href="#">second link</a> </p> </body> </html>

Example of developer console as its showing

Read Entire Article