3 additional Web 1.0 tips and tricks

Dustin Diaz has posted on his blogs (what's a blog? there were no blogs in good old web 1.0) "7 hottest web 1.0 techniques". While those are nice and highly recommended, let me in on a few little secrets.

1. script language=JavaScript

When including a script into a page, you need to specify the language. First of all there's also VBScript and we need to make a difference. Second, this is more future-proof - who knows what other scripting languages the future has in store for us.

Proper capitalization of JavaScript is crucial.

<script language=JavaScript>

2. Image rollovers

There's a better way to do rollovers - directly in the image tag! Shorter and more convenient - all the code is in one place. This makes it much, much more easier to code your CMS.

<img
  src=off.gif
  onmouseover='this.src="on.gif"'
  onmouseout='this.src="off.gif"'>

3. Link overline

OK, I didn't want to share this, because it's way too cool for just anyone to know, I should've kept it for myself.

a {text-decoration:none;}
a:hover{border-top: 1px solid;}

This entry was posted on Thursday, November 22nd, 2007 and is filed under Web1.0. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.


Get notification for future posts: follow me on Twitter or subscribe to my RSS feed

Somewhat related posts

12 Responses to “3 additional Web 1.0 tips and tricks”

  1. Kaloyan K. Tsvetkov Says:

    border-top: 1ps solid; — shouldn’t this be 1px ? and why don’t use text-decoration: overline ?

  2. Stoyan Says:

    Thanks, fixed px/ps!

    Overline, hmm? So you knew about this trick, eh? Who told you? Did you tell anyone? We’re leaking information here, this is very disturbing. Some Web 1 secrets should only be transfered father-to-son type of thing

  3. Kaloyan K. Tsvetkov Says:

    Heh, tell that to w3schools :)

  4. zickedhelik Says:

    He user “border-top: 1px solid” instead of “text-decoration: overline” because it’s web 1.0 where the implementation of some CSS rules weren’t good and you had to create your own solutions. :)

  5. Stoyan Says:

    zickedhelik, or maybe the real x-browser solution is a background image :)
    something like this spell-check-like underline

  6. todd Says:

    1.) NO! do not add the language attribute! unless you are actually using VB. JavaScript IS the default, and specifying the version e.g. javascript1.2 is now considered pointless, because the MS JScript doesn’t meet any of the various spec levels properly.

    In fact, the type=”text/javascript” is even considered optional these days.

    (finally, for any attribute you do add, you MUST specify the quotes!, not doing so indicates that you are not a professional developer these days as we move towards XHTML as a standard)

    2.) Quotes are the “double quotes” not the ’single quotes’ for HTML attributes. Save the single quotes for Javascript code.

    3.) Link overline? What? this is just plain dumb and counter intuitive.

  7. Kaloyan K. Tsvetkov Says:

    @zickedhelik : If I recall correctly, text-decoration: overline was available way back when there was IE4 ;) You can not get more Web 1.0 than that, right ;)

  8. Stoyan Says:

    Todd, the whole post was meant to be a joke (as the one I’m linking to at the beginning)

    Thanks for your comment, though. It explains very well what’s wrong with those three “tips”

  9. 3 additional Web 1.0 tips and tricks Says:

    [...] This is the cached version of http://www.phpied.com/3-additional-web-10-tips-and-tricks/ We are neither affiliated with the authors of this page nor responsible for its content. [...]

  10. Philip Tellis Says:

    Oh my eyes… aaargh! :D

  11. Marin Todorov Says:

    Eh .. eeeh .. yeah .. good old days … you do an image with rollover and all girls are crazy about you … lol
    Thanks for the nice post .. made me remember the web in the 90s :)

    Marin

  12. Kevon Says:

    Proper capitalization of JavaScript is a very important work that should be done.
    http://www.freeworldofwarcraftguide.com/

Leave a Reply