4

I'm trying to log html to the browser's console in order to notify user, for example, when user open developer tools a header logged to console.

Just like Facebook

enter image description here

I have tried this,

console.log('<h1 style="color : red">Pay Attention</h1>');

but it's logged as string

Fenil Patel
  • 1,528
  • 11
  • 28
Ali Faris
  • 17,754
  • 10
  • 45
  • 70

1 Answers1

6

Try this

console.log('%c Stop ', ' color: red; font-size:28px;');

you cand find all by googling customize javascript console

Anjana Silva
  • 8,353
  • 4
  • 51
  • 54
FarukT
  • 1,560
  • 11
  • 25