I've bought some server hosting and I'm re-writing b3ta m3ss3nger to be super efficient javascript.
What browsers are everyone using (so I cantest)
(,
Fri 15 Mar 2002, 14:50,
archived)
What browsers are everyone using (so I cantest)
Don't use Javascript, please!
Javascript works on my home browsers, but its flakey at best with complicated scripts!
PLEASE think of the lumpbuckets!
(,
Fri 15 Mar 2002, 14:59,
archived)
Javascript works on my home browsers, but its flakey at best with complicated scripts!
PLEASE think of the lumpbuckets!
It just goes:-
document.write(some stuff);
over and over.
(,
Fri 15 Mar 2002, 15:24,
archived)
document.write(some stuff);
over and over.
If you use javascript to write your page you can do this:-
var x="<td><img src='/images/space.gif' width='1' height='5' alt='-'>";
for bits of often used code, and then use
document.write(x);
to write them. I've saved around 30% of my file sizes like this...
(although it makes it hell to read!)
(,
Fri 15 Mar 2002, 15:00,
archived)
var x="<td><img src='/images/space.gif' width='1' height='5' alt='-'>";
for bits of often used code, and then use
document.write(x);
to write them. I've saved around 30% of my file sizes like this...
(although it makes it hell to read!)