public marks

PUBLIC MARKS from astrochoupe with tag javascript

2013

Intro.js

by 1 other
Better introductions for websites and features with a step-by-step guide for your projects.

Les bons outils pour développer en HTML5

by 1 other
Navigateurs, éditeurs, outils de test et débogage... Tour d'horizon des solutions pour développer en HTML5.

2012

google-styleguide

Règles de développement de Google : HTML, CSS, Javascript, C...

2011

Comment optimiser le code d'un site Web pour en améliorer la performance

Optimisation du code JavaScript, du poids des pages, des requêtes-réponses... La conférence Velocity Europe d'O'Reilly a fait la part belle aux enjeux de performance Web.

Google Page Speed Online

by 1 other
Page Speed Online analyzes the content of a web page, then generates suggestions to make that page faster. Reducing page load times can reduce bounce rates and increase conversion rates

Firefox 4 : le point sur le support des standards

HTML5, CSS3 et JavaScript, tour d'horizon des standards et technologies Web pris en charge par la nouvelle version du navigateur Open Source de la fondation Mozilla.

2010

HTML5 Boilerplate

by 13 others
HTML5 Boilerplate, un template puissant et complet A rock-solid default for HTML5 awesome.

RGAA - Accessibilité pour les Administrations

Présentation du Référentiel Général d'Accessibilité pour les Administrations

Server Side JavaScript

Javascript utilisé il y a quelques années par Netscape comme langage côté serveur.

2009

Dynamically Created Radio Buttons - Another IE Gotcha

As soon as I think I have it all worked out I bump into another oddity between Firefox and IE and handling the DOM. Specifically adding a radio button (or set of them) dynamically. My initial javascript went something like this: # var rdo = document.createElement('input'); # rdo.type = 'radio'; # rdo.id = 'someUniqueID'; # rdo.name = 'myRadio'; # rdo.value = 1; # # myDocumentsBody.appendChild(rdo); This almost worked perfectly. The input was added, it was a radio button, but it was totally unselectable. I could select it via javascript but the normal "click" event didn't cause the radio button to assume the "selected" state in IE? What gives?