The following CSS code styles the element:
span {
position:absolute;
float:left;
height:80px;
width:150px;
top:210px;
left:320px;
background-color:yellow;
display:none; //No display
border: 3px solid #111;
}
My attempt to remove the display property and make the element visible using jQuery was unsuccessful:
$("span").removeAttr("display");
Is there a different method that I should use to achieve this, or is my current approach valid?