Longest Page on the Internet?!
YOU say that you have the longest page on the internet? Well, let me top that. This page is infinitely long. That’s infinitely longer than whatever the “world’s longest / tallest” page is. This is accomplished with a little javascript that writes 72 pixels or one inch per second that the browser window is open. And it goes on forever:
var dvCount = 1;
function writeDiv(){
var e = document.getElementById(’longestDiv’);
if(!e){} else {
e.innerHTML += ‘<div style="position:absolute; left:’ + (dvCount * 90) + ‘px; width:72px; height:50px; border:1px dashed red;">’ + dvCount++ + ‘</div>’;
}setTimeout(’writeDiv()’, 1000);
}writeDiv();
And here is the result:
This entry was posted on Saturday, January 21st, 2006 at 2:38 pm and is tagged with px, lt, browser window. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback.

Add New Comment
Viewing 19 Comments
Thanks. Your comment is awaiting approval by a moderator.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Do you already have an account? Log in and claim this comment.
Add New Comment
Trackbacks
(Trackback URL)
1/22/2006 at 9:13 am
[...] I spotted elliottbacks blog today, and saw his post on the longest page on the internet. Well, I learned ...
1/22/2006 at 2:33 pm
[...] Today, Elliott Back, a person that I highly respect online, sent me a notice of copyright infringement due to ...