Why does this code give an error?
Posted
by Jay Hankins
on Stack Overflow
See other posts from Stack Overflow
or by Jay Hankins
Published on 2010-06-01T13:30:44Z
Indexed on
2010/06/01
13:33 UTC
Read the original article
Hit count: 221
JavaScript
|jQuery
$("#main").animate({
display: "block",
width: "70%",
opacity: 0.4,
marginLeft: "0.6in",
fontSize: "3em",
borderWidth: "10px"
} 1500);
This is jQuery. I get a "missing ) after arguement list" message. What's wrong?
© Stack Overflow or respective owner