Quote:
Originally posted by someone
I like this hack a lot, but I think there is still room for improvement.
Let's say you have 50 forums on your vbulletin board.
Then that means that this code:
onMouseOver="this.style.backgroundColor='#F9F9F9';
this.style.cursor='hand';"
onMouseOut="this.style.backgroundColor='#FFFFFF';"
onClick="window.location.href='forumdisplay.php?s= $session[sessionhash]&forumid=$forum[forumid]'"
will be displayed 50 times, which adds easely 12 KB to your page. Filesize and bandwith are pretty important to me, so I'm wondering if some nifty JavaScript code in the header of the page can elimate the unwanted KB's, by making the MouseOver commands short, like this for example:
onMouseOver="highlight"
Just wondering if this is possible at all, since I'm not a JavaScript guru.
|
i'm not a Javascript guru either but i know that a similar effect can be acheived with using CSS to define a class and I think with Javascript you can define a class too. So the code goes in the header once and then you just associate the object in the page with the class.