Guest User

Untitled

a guest
May 24th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. function changeli() {
  2. var totalli = $("#staerke1 li").size()+1;
  3. $("#test").attr("value",totalli);
  4. console.log(totalli);
  5. }
  6.  
  7. $("#staerke1 li,#staerke2 li").click(function () {
  8. $(this).css({backgroundColor: "#ddd",fontWeight: "bold"});
  9. changeli();
  10. });
  11.  
  12.  
  13. <input type="button" id="test" value="testbutton">
Add Comment
Please, Sign In to add comment