CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
Other Discussions
background change
manojnaanak
Permalink to comment
#
June 2012
anyone tell me js, jqury, css or something else .
i want to change body background image on click. i have to put 5 button for each 5 background image.
please tell me..
Meta_Ing
Permalink to comment
#
June 2012
Javascript:
document.body.style.background="
background_value_with_CSS_syntax
";
jQuery:
$("body").css("background","
background_value_with_CSS_syntax
");
Just edit accordingly and use either of these with an onclick event attached to a button.
Add a Comment
i want to change body background image on click. i have to put 5 button for each 5 background image.
please tell me..
document.body.style.background="background_value_with_CSS_syntax";
jQuery:
$("body").css("background","background_value_with_CSS_syntax");
Just edit accordingly and use either of these with an onclick event attached to a button.