JSFiddle - React, Tailwind, and code Playground

HotmailRemAds_try1

by dledle2

JavaScript

javascript:var strmySelectorHotmail1 = "#primaryContainer > div._n_p"; /* console.log ( document.querySelectorAll( strmySelectorHotmail1 )[0] ); */ var myHTMLDivElement_Hotmail1 = document.querySelectorAll(strmySelectorHotmail1)[0]; /* console.dir ( myHTMLDivElement_Hotmail1.toString() ); /* shows HTMLDivElement */ /* console.log (myHTMLDivElement_Hotmail1.style.width = "0px" ); */ myHTMLDivElement_Hotmail1.style.width = "0px"; console.log(""); var strmySelectorHotmail2 = "#primaryContainer > div:nth-child(4)"; console.log(document.querySelectorAll(strmySelectorHotmail2)[0]); console.dir(strmySelectorHotmail2); /* shows this is a DIV element */ ; var myHTMLDivElement_Hotmail2 = document.querySelectorAll(strmySelectorHotmail2)[0]; console.dir(myHTMLDivElement_Hotmail2); /* shows this is a DIV element still */ ; myHTMLDivElement_Hotmail2.style.right = "0px"; console.log("");