Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. __________
  2. Deportes: |__________| // <input id="deportes"></input>
  3. Videojuegos: |__________| // <input id="videojuegos"></input>
  4. Música: |__________| // <input id="musica"></input>
  5.  
  6. var parametros = {};
  7.  
  8. $('form').on('submit', function (e) {
  9. e.preventDefault();
  10.  
  11. var data = $(this).serialize();
  12.  
  13. $.post('/envio', data, function (results) {
  14. // Success
  15. });
  16. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement