Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. // evitamos la progacion del click
  2. $(document).on("click", ".rejilla", function() {
  3. $(this).stopPropagation();
  4.  
  5. // le pasamos el evento
  6. onclick="cambiar_nombre(event,this);";
  7.  
  8. //recibimos el evento y evitamos la propagacion
  9. function cambiar_nombre(event,valor) {
  10.  
  11. event.stopPropagation();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement