Debug webpages with code using the inspector's internal API

Web
  • 1605 words
  • 9 mins

Using the right approach, we can get past the Chrome inspector’s UI and invoke its internal API directly.

This lets us debug live webpages using JavaScript instead of buttons!

read more

iframes and when JavaScript worlds collide

Web
  • 1475 words
  • 8 mins

Every iframe gets a complete copy of the JS web environment, down to every prototype chain.

Let’s see what horrifying things can happen when we interact with it!

read more

Every way to make a synthetic iframe: an overview

Web
  • 1015 words
  • 6 mins

A synthetic iframe is one that doesn’t have web address. It's filled by its parent page instead.

Let’s take a look at every single way you can create one.

read more

What is a DOM node? A peek under the hood

Web
  • 1087 words
  • 6 mins

What makes an object a DOM node? Is it the prototype or something else?

The answer turns out to be surprisingly complicated!

read more

What is an iframe? An overview

Web
  • 1411 words
  • 8 mins

Iframes are omnipresent and extremely useful, yet they are also complicated and confusing.

Let’s take a broad look at how they work.

read more

Every type of script tag: an overview

Web
  • 2017 words
  • 11 mins

There used to be just one type of script tag, but after decades of web standards development, we have tons of them.

Let’s take a look at every single one!

read more