The element is :
span {
position:absolute;
float:left;
height:80px;
width:150px;
top:210px;
left:320px;
background-color:yellow;
display:none; //No display
border: 3px solid #111;
}
i use this code to remove the display so it can be visible
$("span").removeAttr("display");
but it does not works...is the method im using valid ? or is there an other way to get the result ?