Guest User

Untitled

a guest
Jan 21st, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. var num = 1;
  2.  
  3. $( "button" ).on( "click", function() {
  4.  
  5. if( num === 1) {
  6.  
  7. num++;
  8. $( "<div />" ).attr( "id", num ).text( "Content-" + num ).appendTo( $( ".inner" ) );
  9. return;
  10. }
  11.  
  12. if( num === 2) {
  13.  
  14. num--;
  15. $( "<div />" ).attr( "id", num ).text( "Content-" + num ).appendTo( $( ".inner" ) );
  16. return;
  17. }
  18.  
  19. if( num === 3) {
  20.  
  21. num--;
  22. $( "<div />" ).attr( "id", num ).text( "Content-" + num ).appendTo( $( ".inner" ) );
  23. return;
  24. }
  25.  
  26. });
Add Comment
Please, Sign In to add comment