Search Results

2
votes

Underused Features of HTML

Usability-wise it is extremely important to always use <label> if you use input type radio or type checkbox. This lets the user click not just on the radio button or check box, but also on th …
6
votes

When should I use Inline vs. External Javascript?

Externalizing javascript is one of the yahoo performance rules: http://developer.yahoo.com/performance/rules.htm …
0
votes

Collapsable Drop Down List Box in HTML

You can't do this with a traditional <select> control, and I doubt there are ready-made components that fit the bill. If you do want to make this yourself, and don't want to buy into a toolki …
0
votes

HTML version choice

I don't think it actually matters whether you use XHTML or plain HTML. The end goal here is to have low maintenance and quick development through a predictable rendering. You can get this from usin …
1
vote

Good Website Editing Software for the Casual Internet User?

I've tried both approaches: HTML Editor: Kompozer for teaching my sister to update her site. CMS: CMSimple for teaching …
-1
votes

How to update HTML “select” box dynamically in IE

You could try replacing the entire select element from generated html code, or as a hack removing the element from the DOM and readding it. …
0
votes

tracking pixel or javascript include?

If you include an external script in the <head> section, it is downloaded and executed before the page is shown, so you are sure that if a user saw the page they got tracked. For <img> …
1
vote

Linux Firefox Spaces Things Differently

Could be due to fonts, with linux doing a fallback that's somehow messing up size calculations. Could also be due to differences in the timing of page reflow, where the button hasn't sized itself a …
11
votes

Why is element <u> considered outdated according to VS2008?

The underline tag has been deprecated as of HTML4. http://www.w3.org/TR/html401/present/graphics.html#edef …
1
vote

Why developers hate iframes?

One reason they're rejected is because they're inherently slow. By the time the iframe begins loading its host page is already in an advanced stage of the loading pipeline. Iframes and snappy brows …
1
vote

sprites vs image slicing

One often overlooked downside of using CSS sprites is memory footprint: http://blog.vlad1.com/2009/06/2 …
0
votes

HTML and Compilers

GWT, Dojo and ExtJS do exactly what you describe. Yes, they require javascript, but they do allow you to avoid remembering many of the "rules" (to a greater or lesser degree depending on the techno …
2
votes

The Best Way To Represent key/value Pairs In HTML Class Names

HTML5 is going to add data-* attributes for just this purpose, and these already work in every browser today (but might send some validators for a loop). …
4
votes

best way to filter unwanted elements from html before rendering

Don't use PHP to munge the HTML, but instead use a print stylesheet to change the layout. …
0
votes

Do you plan for javascript being off?

Like others have said, it depends. There are three traditional use cases where disabled javascript was "expected": mobile people with disabilities high-secu …