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

1

1 Answer 1

6

Try this

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

you cand find all by googling customize javascript console

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.