User twernt - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T19:18:59Zhttp://stackoverflow.com/feeds/user/18846http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/187027#1870273Answer by twernt for Select all child elements except the firsttwernt2008-10-09T12:26:55Z2008-10-09T12:26:55Z<p>Based on my totally unscientific analysis of the four methods here, it looks like there's not a lot of speed difference among them. I ran each on a page containing a series of unordered lists of varying length and timed them using the Firebug profiler.</p>
<pre><code>$("li").slice(1).addClass("something");
</code></pre>
<p>Average Time: 5.322ms</p>
<pre><code>$("li:gt(0)").addClass("something");
</code></pre>
<p>Average Time: 5.590ms</p>
<pre><code>$("li:not(:first-child)").addClass("something");
</code></pre>
<p>Average Time: 6.084ms</p>
<pre><code>$("ul li+li").addClass("something");
</code></pre>
<p>Average Time: 7.831ms</p>
http://stackoverflow.com/questions/178407/select-all-child-elements-except-the-first/178425#1784259Answer by twernt for Select all child elements except the firsttwernt2008-10-07T13:25:15Z2008-10-07T13:25:15Z<p>You should be able to use the "not" and "first child" selectors.</p>
<pre><code>$("li:not(:first-child)").addClass("something");
</code></pre>
<p><a href="http://docs.jquery.com/Selectors/not" rel="nofollow">http://docs.jquery.com/Selectors/not</a></p>
<p><a href="http://docs.jquery.com/Selectors/firstChild" rel="nofollow">http://docs.jquery.com/Selectors/firstChild</a></p>
http://stackoverflow.com/questions/178325/how-do-you-test-if-something-is-hidden-in-jquery/178386#17838616Answer by twernt for How do you test if something is hidden in jQuery?twernt2008-10-07T13:16:15Z2008-10-07T13:16:15Z<p>You can use the "hidden" and "visible" selectors.</p>
<pre><code>$(element:hidden)
</code></pre>
<p><a href="http://docs.jquery.com/Selectors/hidden" rel="nofollow">http://docs.jquery.com/Selectors/hidden</a></p>
<pre><code>$(element:visible)
</code></pre>
<p><a href="http://docs.jquery.com/Selectors/visible" rel="nofollow">http://docs.jquery.com/Selectors/visible</a></p>
http://stackoverflow.com/questions/139621/merit-of-screencasts-vs-text-based-documentation/139713#1397133Answer by twernt for Merit of screencasts vs text-based documentation?twernt2008-09-26T14:05:17Z2008-09-26T14:05:17Z<p>There are a lot of questions here, I'll try to answer them one at a time.</p>
<p>Q: Can we get rid of video tutorials, please?</p>
<p>A: I will get rid of all of <em>my</em> video tutorials. I have no power over others' video tutorials.</p>
<p>Q: Does anyone like these videos?</p>
<p>A: I assume that someone, somewhere does, although I can't make any predictions about the overlap between the population of "likes these videos" and "made these videos".</p>
<p>Q: What's the advantage?</p>
<p>A: Demonstrations benefit some users, especially those who are both visual and auditory learners.</p>
<p>Q: Isn't text much easier to work with?</p>
<p>A: Not in all cases.</p>
<p>Q: Is there any good argument FOR these videos?</p>
<p>A: Demonstrations benefit some users, especially those who are both visual and auditory learners.</p>
<p>Q: Are people becoming illiterate?</p>
<p>A: Probably not, at least in the United States, where we currently enjoy a <a href="https://www.cia.gov/library/publications/the-world-factbook/print/us.html" rel="nofollow">99% literacy rate</a>.</p>
http://stackoverflow.com/questions/101822/is-xhtml-compliance-pointless/101884#1018843Answer by twernt for Is XHTML compliance pointless?twernt2008-09-19T13:38:34Z2008-09-19T13:38:34Z<p>If you're planning on taking advantage of XHTML as XML, then it's worth it to make your pages valid and well formed. Otherwise, plain old semantic HTML is probably want you want. Either way, the needs of your audience outweigh the needs of a validator.</p>