$('body').css('background-image', 'url(images/wallpapers/000.jpg)');
<html style="background-image: url(http://www.kolomensky.com/uploads/posts/2009-05/thumbs/1242240573_36_glass_kolomensky.com.jpg)"> <script> if (localStorage.background !== undefined) { document.documentElement.style.backgroundImage = localStorage.background; } function changeBackground(url) { localStorage.background = document.documentElement.style.backgroundImage = 'url(' + url + ')'; } </script> <button onclick="changeBackground('//www.fresher.ru/images6/hdr-fantasticheskie-snimki/big/8.jpg')">Сменить фон</button> <button onclick="delete localStorage.background">Забыть фон</button> </html>
onclick="changeBackground("тут можно было указать путь к фотографии")"
$(document).ready(function(){ $('#black-b').click(function(){ $('.dd-nav1').css('backgroundColor', '#000000'); }) });
$('__selector__').css('backgroundColor', localstorage.background || '#fff');
$('__selector__').css('backgroundColor', '#000000'); localStorage.background = '#000000';