SyntaxFix
Write A Post
Hire A Developer
Questions
This should work:
window.onload = function() { document.getElementById('about').className = 'expand'; };
Or if you're using jQuery:
$(function() { $('#about').addClass('expand'); });