Advertisement
Guest User

Untitled

a guest
Nov 24th, 2014
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. <select id="settingBackground">
  2. <option name="default">Default</option>
  3. <option name="thankshaking">Background 2</option>
  4. </select>
  5.  
  6. $(document).ready(function () {
  7. $('#settingBackground').on('change', function () {
  8. if (this.value == "Default") {
  9. // Change background
  10. $('body').css("background", "#1e8cd4");
  11. $('body').css("color", "#fff");
  12. } else if (this.value == "Background 2") {
  13. // Change background
  14. $('body').css("background", "url('http://i.imgur.com/cV7PKqh.jpg') no-repeat center center fixed");
  15. $('body').css("background-size", "cover");
  16. $('body').css("color", "#000");
  17. }
  18. });
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement