How to make the EoF not upside down

  • Thread starter Thread starter Dionicio3
  • Start date Start date
  • Views Views 2,357
  • Replies Replies 22
Joined
Feb 26, 2017
Messages
4,127
Solutions
2
Reaction score
12,607
Trophies
5
Age
23
Location
Hollister, CA
Website
dionicio3.com
XP
9,193
Country
United States
Step one: Open you browser's js console
Step two: Paste and run the following:
Code:
var lelelel = document.getElementsByTagName('body');
for (var i = 0, l = lelelel.length; i < l; i++) {
  lelelel[i].style = 'transform: rotate(0deg) !important; -webkit-transform: rotate(0deg) !important; -moz-transform: rotate(0deg) !important; -o-transform: rotate(0deg) !important; -ms-transform: rotate(0deg) !important;'
}
Step three: Done!
 
The is actually multiple
How can there be multiple ``<body>`` tags? I've never seen a site with more than 1.

My JS is rusty, but I believe the document.getelementswhatever function call just returns an array of the tag you specified. Accessing it at index 0 should suffice.
 
How can there be multiple ``<body>`` tags? I've never seen a site with more than 1.

My JS is rusty, but I believe the document.getelementswhatever function call just returns an array of the tag you specified. Accessing it at index 0 should suffice.
That's what I originally tried, didn't work
 
That's what I originally tried, didn't work
must've been something else.


Code:
var lelelel = document.getElementsByTagName('body');
lelelel[0].style = 'transform: rotate(0deg) !important; -webkit-transform: rotate(0deg) !important; -moz-transform: rotate(0deg) !important; -o-transform: rotate(0deg) !important; -ms-transform: rotate(0deg) !important;'
you sure?
 
must've been something else.


Code:
var lelelel = document.getElementsByTagName('body');
lelelel[0].style = 'transform: rotate(0deg) !important; -webkit-transform: rotate(0deg) !important; -moz-transform: rotate(0deg) !important; -o-transform: rotate(0deg) !important; -ms-transform: rotate(0deg) !important;'
you sure?
Huh, wonder why I did not work the first time I did it. Oh well, even though my code had unnecessary parts to it, it worked, and that's all that mattered.
 
How can there be multiple ``<body>`` tags? I've never seen a site with more than 1.

My JS is rusty, but I believe the document.getelementswhatever function call just returns an array of the tag you specified. Accessing it at index 0 should suffice.
He's actually right, even though of course, if it's the initial body tag that's flipped, that will be enough to unflip. There are multiple bodies here cause the text box, for example, runs in it's own iframe.
 

Site & Scene News

Popular threads in this forum