Profile
Achievement
thesmu's Recent Snippets
- All /
$(document).ready(function() {
var maxHeight = -1;
$('.features').each(function() {
maxHeight = maxHeight > $(this).height() ? maxHeight : $(this).height();
});
$('.features').each(function() {
$(this).height(maxHeight...
1
856
posted 11 years ago by thesmu
$(document).ready(function() {
// Handler for .ready() called.
});
0
1061
posted 11 years ago by thesmu
Conforming XHTML 1.0 Strict Template - The Web Standards Project
1
1106
posted 12 years ago by thesmu
Conforming XHTML 1.0 Transitional Template - The Web Standards Project
1
1030
posted 12 years ago by thesmu
A quick note added in February 2011. Google has now removed the iwloc part of the url in most cases. To remove the pin, you can now add &iwloc=near to the end of the iframe src attribute. So….
<iframe></iframe>
…would become…
<ifra...
0
761
posted 12 years ago by thesmu
The first two mechanisms are probably the most popular, with display: none; being the go-to option implemented by nearly every JavaScript library on the planet and the lion’s share of ready-made JavaScript widgets. If you don’t want your hidden c...
0
726
posted 13 years ago by thesmu