Did you know that .append() sometimes moves the nodes you pass into it, and other times clones them? This undocumented behavior may cause you some grief if you’re assuming the first, but seeing the second.
Entries from March 2009
The undocumented life of jQuery’s .append()
March 19th, 2009 · 8 Comments
Tags: javascript · programming
Jive launches the Social Business Revolution
March 11th, 2009 · No Comments
What if Work Was Social Again? from Jive Software on Vimeo.
Jive is absolutely taking the lead in defining what Social Business Software is and should be. Read Jive’s Manifesto.
Tags: jive
JavaScript trivia tidbit for all you FF2 developers
March 4th, 2009 · No Comments
Did you know, that in Firefox 2, creating a link like:
<a href="javascript:">click me!</a>
will actually open up the Firefox error console?

You’d think it’d do nothing, since the href is just “javascript:”, but that’s not the case. To do nothing you need a bit more:
Tags: javascript · other · programming