I want to set page backgroudImage using jQuery.
I wrote this code but it is not work.
What is the problem?
Image is exist

var Page = $(this);
$(function () {
SetBackgroundImage();
});
function SetBackgroundImage() {
//Todo read ImagePath from server
var ImageUrl;
ImageUrl ="../Images/BackgroudImage.jpg";
try {
Page.css('background-image', 'url(' + ImageUrl + ')');
} catch (e) {
//LogError
alert(e.Description);
}
}