Change a CSS style using jQuery
Tags: css, jQuery
Date: 22nd July, 2010
Say you’ve got this:
<div id=”divname”></div>
and you hide it in the CSS using:
#divname {display: none;}
To show it using jQuery, simple action this:
$(“#divname).css(“display”,”block”);
Simples!