Guest User

Untitled

a guest
Jul 23rd, 2019
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // OPCION JQUERY :
  2. $('#iddelboton').on('click',function() {
  3. $.get( "documento.php", function( data ) {
  4. alert('get enviado');
  5. });
  6. /* si queres enviar una variable
  7. $.get( "documento.php?var=asdasdas", function( data ) {
  8. alert('get enviado');
  9. });
  10. */
  11.  
  12. });
  13.  
  14.  
  15. // OPCION JAVASCRIPT (VANILLA)
  16. var accion = function() {
  17. //accion q se ejecuta al bla bla.. XD
  18. }
  19. en el boton poner onclick="accion()"
Add Comment
Please, Sign In to add comment