By Jude | Published:
March 4, 2009
Google is providing a crash course of sorts for Google Analytics. After completing the video series (or before, whenever) you can purchase and take a test to be recognized as a person who understands GA.
By Jude | Published:
February 17, 2009
A bit of javascript and jquery to compare the height of the page content vs. the height of the window. In this case, I’m adding a class to another class if the content is shorter.
// if the content of the page is less than the height of the window…
if (document.body.scrollHeight < document.documentElement.clientHeight)
{
$(“.foot-wrap”).addClass(“shortpage”);
}
update: I had to [...]
By Jude | Published:
February 11, 2009
Nice article from Kevin Potts about minding the details. I myself must aspire to better cover all bases. As a designer, I want to be unappreciated for all the right reasons.
Posted in Backside | Tagged reference |