Shall I assume that I can't apply .css()
to the body tag?
Because if I do it on $("#div")
... it works?
Shall I assume that I can't apply .css()
to the body tag?
Because if I do it on $("#div")
... it works?
$(document.body).css(...)
or
$('body').css(...)
how about
$("body").css("background-image","url('/my/image.jpg')");