Cloning background image with parenthesis in file name
问题 I have a background image with a parenthesis in the filename: <DIV style="BACKGROUND: url('http://site.com/image(8).png');"></DIV> This is fine normally, and there is no confusion because there are quotes around the file name. Looking in IE's developer tools however, I see that the browser stripped the quotes for some reason. <DIV style="BACKGROUND: url(http://site.com/image(8).png);"></DIV> Still, it works, so not a big deal. The problem comes when I try to use jquery's clone function.