treehouse : what would you like to learn today?
Web Design Web Development iOS Development

background change

  • 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..
  • 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.