Sorry for the stupid question. I tried looking for an answer somewhere, but couldn't find any. I can't get this code to work:
<div onmouseover="this.style.backgroundImage = 'url('#')'";>
</div>
Help?
Sorry for the stupid question. I tried looking for an answer somewhere, but couldn't find any. I can't get this code to work:
<div onmouseover="this.style.backgroundImage = 'url('#')'";>
</div>
Help?
Escape single quotes:
<div onmouseover="this.style.backgroundImage = 'url(\'#\')'">
</div>