125
votes
67answers
12k views
Why not use tables for layout in HTML?
It seems to be the general opinion that tables should not be used for layout in HTML.
Why?
I have never (or rarely to be honest) seen good arguments for this. The usual answers are:
It's good to …
111
votes
23answers
84k views
RegEx match open tags except XHTML self-contained tags
I need to match all of these opening tags:
<p>
<a href="foo">
But not these:
<br />
<hr class="foo" />
I came up with this and wanted to make sure I've got it right. I am …
60
votes
16answers
1k views
Are fluid websites worth making anymore?
Hey guys,
I'm making a website now and I am trying to decide if I should make it fluid or not. Fixed width websites are much easier to make and also much easier to make them appear consistent.
To be …
46
votes
41answers
2k views
Should We Mask Passwords?
From Jacob Nielson's "Stop Password Masking":
Usability suffers when users type in
passwords and the only feedback they
get is a row of bullets. Typically,
masking passwords doesn't even
…
42
votes
4answers
4k views
Problems with HTML <marquee> tag
Actually I am trying to move some box alternatively with in another box. I made it work, but both the blocks do not interrupt each other. What should I do? How can I make the blocks cross each other? …
42
votes
28answers
10k views
Href for Javascript links: “#” or “javascript:void(0)”?
When building a link that has the sole purpose to run javascript, is it better to:
<a href="#" onclick="myJsFunc();">Link</a>
Or
<a href="javascript:void(0)" …
41
votes
14answers
3k views
Frame Buster Buster … buster code needed
Let's say you don't want other sites to "frame" your site in an <iframe>:
<iframe src="http://yourwebsite.com"></iframe>
So you insert anti-framing, frame busting JavaScript into …
39
votes
27answers
5k views
Options for HTML scraping?
I'm thinking of trying Beautiful Soup, a python package for HTML scraping. Are there any other HTML scraping packages I should be looking at? Python is not a requirement, I'm actually interested in …
38
votes
35answers
4k views
Hidden Features of HTML
HTML being the most widely used language (at least as a markup language) has not gotten its due credit.
Considering that it has been around for so many years, things like the FORM / INPUT controls …
35
votes
11answers
3k views
How can I determine a web user’s time zone?
Is there a standard way for a web server to determine what time zone offset a user is in?
From an HTTP header or part of the user-agent description, perhaps?
33
votes
8answers
2k views
Can you provide some examples of why it is hard to parse XML and HTML with a regex?
One mistake I see people making over and over again is trying to parse XML or HTML with a regex. Here are a few of the reasons parsing XML and HTML is hard:
People want to treat a file as a sequence …
33
votes
9answers
3k views
Google’s Imageless Buttons…
There have been a few articles recently about Google's new imageless buttons:
http://stopdesign.com/archive/2009/02/04/recreating-the-button.html
http://stopdesign.com/eg/buttons/3.0/code.html
…
33
votes
66answers
3k views
Do most web ‘programmers’ (not designers) use wysiwyg editors or hand code their HTML?
When I started programming web pages, it became immediately obvious that the WYSIWYG editors sucked. The html output was difficult to maintain, did things in ways you may not agreed with, completely …
31
votes
24answers
2k views
Tables instead of DIVs
Under what conditions should you choose tables instead of DIVs in HTML coding?
30
votes
6answers
790 views
Does it still make sense to use HTML comments on blocks of JavaScript?
In the past people used to wrap HTML comment tags around blocks of JavaScript in order to prevent "older" browsers from displaying the script. Even Lynx is smart enough to ignore JavaScript, so why do …
