How to recreate Facebook's console warning
Make money for being or staying online/internet.

You will get a $50 starting gift when you join using this code: Exode4LKrbujm1z and link:: GET THE OFFER NOW!!

When I was inspecting some code on Facebook. I came across this interesting feature. A simple styled console warning message from Facebook to its dear users(products).

Facebook's console warning message states like this;

Stop!

This is a browser feature intended for developers. If someone told you to copy and paste something here to enable a Facebook feature or "hack" someone's account, it is a scam and will give them access to your Facebook account.

See https://www.facebook.com/selfxss for more information.

So in this tutorial below, I will help you or show you how to recreate the same console warning as Facebook on your website.

Tutorial.
Now, what is %c?

The %c applies CSS style rules to the console log output string as specified by the second parameter as seen in the example below.

copy

var stopCss = "color:red; font-size:65px; font-weight:bold; -webkit-text-stroke: 1px black";
var msgCss = "font-size:20px; background-color:teal;";

console.log('%cStop', stopCss);
console.log('%cThis feature is intended for Developers only.', msgCss);
console.log('%cSee https://ostoncodecypher.com/about for more info.', msgCss);
	

If I am to explain the example above;

%c is the specifier that’s within the first argument of the console.log() which picks up the very next argument as CSS style for the %c pattern argument text.

'Stop' + other texts in other console.log()s are the messages

Then finally stopCss and msgCss are the variables holding the CSS styles.

Save up to 80% with this Domain & Shared Hosting package deal! 80% OFF - GET OFFER NOW

Related Post(s)

» How to Animate Font Awesome Icons With Javascript

» How to detect whether the browser is online or offline using Javascript

» How to recreate Facebook's console warning

» Here are some games made with javascript

» How to Install Node.js® and NPM on Windows

collections_bookmark Category :: Javascript
date_range Published :: 3 years ago At: 11:40 PM
event_note Detailed Date :: Feb 21st, 2021
person Writer :: Code
  • RECENT POSTS
2 days ago

Mr.

(sel


2 days ago

Mr.

(sel


2 days ago

Mr.

555


2 days ago

Mr.

555


2 days ago

Mr.

5550


2 days ago

Mr.

5550


2 days ago

Mr.

555


2 days ago

Mr.

555


Subscribe
  • ADVERTISEMENT

YOU MAY LIKE THESE POSTS

share