Octubre 2011
11 publicaciones nuevas
Mount Box.net on your Desktop - Blog on a Stick →
Europe, CSS & jQuery clickable map by Winston Wolf →
Mapas de Europa y sus países por separado con CSS y jQuery.
☑ Saddam Hussein
☑ Osama Bin Laden
☑ Khaddafi
☐ Internet Explorer
– Twitter / @oetsie: ☑ Saddam Hussein ☑ Osama B …
Apple Lisa estaba pensado para ser, como ya se ha mencionado, la nueva...
– Apple - Wikipedia, la enciclopedia libre
30 Genuinely Useful Mac Apps for Designers |... →
1 etiqueta
The Neon Javascript Library →
Otra librería Javascript de 4Kb. Tiene buena pinta.
Features:
CSS-based selection engine
Cross-browser event handling
Asynchronous loading of other Javascript
AJAX and JSON decoding
Animation with easing and custom functions
DOM manipulation
Style manipulation
Calculation of element size and position
Attribute and class manipulation
Familiar method chaining syntax
2 etiquetas
Zepto.js - jQuery en 4K para móviles
Zepto.js is a minimalist JavaScript framework for mobile WebKit browsers, with a jQuery-compatible syntax.
1 etiqueta
HTML5 Globals and You | Nettuts →
Menú contextual con HTML5 (atributo contextmenu)
<article id="contextmenu_test">
<header>
<hgroup>
<h1>Let's See What Happens</h1>
<h3>Can we give a context menu?</h3>
</hgroup>
</header>
<p contextmenu="foo">This paragraph has a context menu called "foo"...
4 etiquetas
break the bit: Stripping HTML tags from a string... →
breakbit:
Here’s a clever one, I didn’t come up with it, but I sure want to disseminate it further.
Why bother with regular expressions and stuff when the browsers are more than suitable for the job:
String.prototype.strip_html = function() { var tmp = document.createElement("DIV"); tmp.innerHTML = this;...