Guest User

Untitled

a guest
Oct 24th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <span id="like" class="glyphicon glyphicon-thumbs-up" ></span>
  2. <span id="dislike" class="glyphicon glyphicon-thumbs-down" ></span>
  3.  
  4. $(document).ready(function(){
  5. $("#like").click(function(){
  6. $("#like").addClass("green");
  7. $("#dislike").removeClass("red");
  8. });
  9. });
  10. $(document).ready(function(){
  11. $("#dislike").click(function(){
  12. $("#dislike").addClass("red");
  13. $("#like").removeClass("green");
  14.  
  15. });
  16. });
  17.  
  18. // пишем
  19. localStorage.setItem("someVal", "val");
  20. // читаем
  21. console.log( "someVal = " + localStorage.getItem("someVal"));
Add Comment
Please, Sign In to add comment