Guest User

Untitled

a guest
May 21st, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. function modificarEdad(edad,id){
  2. num = edad.textContent;
  3. edad.textContent = "";
  4. edad.innerHTML = '<form method="post" action="">';
  5. edad.innerHTML += '<input type="text" name="edad" size="4" value="'+num+'" /> <input type="hidden" name="id" value="'+id+'"';
  6. edad.innerHTML += '<input type="submit" name="modificar" value="modificar" /></form>';
  7. edad.onclick= null;
  8. }
Add Comment
Please, Sign In to add comment