Advertisement
Guest User

javaScript

a guest
Jul 7th, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. /**
  2. * Created by Hilde on 1-5-2015.
  3. */
  4.  
  5. var main=function(){
  6. var $about_navigation=$('#aboutNav'),
  7. $goals_navigation=$('#goalsNav'),
  8. $service_navigation=$('#serviceNav'),
  9. $contact_navigation=$('#contactNav');
  10.  
  11. $about_navigation.onclick(function () {
  12. $about_navigation.style.backgroundColor = "#F5F5F5";
  13. $goals_navigation.style.backgroundColor = "#778899";
  14. $service_navigation.style.backgroundColor = "#778899";
  15. $contact_navigation.style.backgroundColor = "#778899";
  16. });
  17.  
  18. };
  19.  
  20. $(document).ready(main);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement