Artikel getaggt mit ‘formular’
AutoComplete für Formularfelder im Browser verhindern
Wenn man nicht möchte, dass der Browser ein Formularfeld intern speichern kann: AutoComplete für Formularfelder.
CSS Layout vs. Table Layout
Beim Smashing Magazine (welches bestimmt alle schon im Feed Reader haben) ist ein guter Artikel zum Thema “Table Layouts vs. Div Layouts: From Hell to… Hell?“
Resümee:
- Benutze die HTML Elemente in der Art, wofür sie gedacht sind!
- “Overusing div tags is as bad as having a table-based layout” /Divitis: “Divitis is a common problem with webdesigners. It is the process of using too many nested/unnecessary divs to mark up a page. “
- HTML5 ergänzt mehr semantische Tags für die Seitenstrukturierung
… achja, und
- “With the release of IE8, all three major browsers now support the styling of block-level elements as tables.”
Ich sage nur
<div class="layoutAlignment area"> ... </div>
Text in Submit Buttons im Firefox unterstreichen
Da dies der Firefox mit dem Doctype
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
nicht macht, gibt es einen kleinen “Hack”:
div.inputSubmitSecondary {
...
background: transparent; /* mozilla: workaround - mozilla cannot
underline submit buttons with xhtml doctype */
...
}
Das ganze kann man sich bei Roadsign beim “Aktualisieren” Button im Basket ansehen.
Checkboxen mit jQuery abfragen
http://www.interaktionsdesigner.de/2008/11/28/verkettete-funktionen-und-checkboxen-mit-jquery/
Bei mir hat allerdings
if($(this).is(":checked"))
im IE funktioniert.
