1

I'm inserting a video tag into a webpage but the video for some reason doesn't show up even though it's found the video resource.

I looked in the console and found == $0 which I've never seen before and didn't know if it had something to do with it.

Does anyone know what this means?

enter image description here

inthenameofmusik
  • 617
  • 1
  • 4
  • 16

1 Answers1

4

That isn't JavaScript. It is just a marker to tell you which DOM element you have selected in the DOM inspector.

You can type $0 in the Console to get the currently selected element.

Quentin
  • 914,110
  • 126
  • 1,211
  • 1,335