Skip to content

Instantly share code, notes, and snippets.

@CosyStudios
CosyStudios / Markup.html
Created November 12, 2013 14:46
Static Footer
<div id="footer-wrapper">
<div class="section">
<div id="footer-columns" class="clearfix">
<div class="raiseContainer" style="height: 30px;">
<span class="footerToggle closed"><div class="footerArrow"></div></span>
<!--<div class="footerBotInnerBand"></div>-->
<div class="inner960">
<div class="region region-footer-firstcolumn">
</div>
getWindowHeight : function() {
var windowHeight = 0;
if (typeof(window.innerHeight) == 'number') {
windowHeight = window.innerHeight;
}
else {
if (document.documentElement && document.documentElement.clientHeight) {
windowHeight = document.documentElement.clientHeight;
}
else {