Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // OPCION JQUERY :
- $('#iddelboton').on('click',function() {
- $.get( "documento.php", function( data ) {
- alert('get enviado');
- });
- /* si queres enviar una variable
- $.get( "documento.php?var=asdasdas", function( data ) {
- alert('get enviado');
- });
- */
- });
- // OPCION JAVASCRIPT (VANILLA)
- var accion = function() {
- //accion q se ejecuta al bla bla.. XD
- }
- en el boton poner onclick="accion()"
Add Comment
Please, Sign In to add comment