Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. for(int i = 1; i <= 9; i++){
  2.  
  3. $('#' + i.toString()).onchange(function(){
  4.  
  5. if($('#' + i.toString()).val != "-"){
  6. indexes.push(i.toString());
  7. var id = i.toString() + $('#' + i.toString()).val;
  8. socket.emit('move', id);
  9. disable();
  10. }
  11.  
  12. });
  13.  
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement