Change Style By Using jQuery

 
 
 
 This is The way of adding several style by using jQuery 
$(Element).css(
{
  "margin-left"   : "0px"
  background: "#F0F0F0",  
  width: "500px",
  height: "500px"
}
);

Post a Comment