Changing Individual CSS Styles with jQuery

http://www.swartzfager.org/blog/index.cfm/2008/2/21/Changing-Individual-...

  $("#missionStatement").addClass("importantTextClass");
  $("#userProfile").removeClass("hideTextClass");

if ($("#missionStatement").css("font-weight")== "400" || $("#missionStatement").css("font-weight")== "normal") {
    $("#userProfile").css("display","none");
    $("#missionStatement").css({ fontSize:"24px", fontWeight:"bold" });
}