Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <form id="form">
  2. <input type="radio" name="location" value="loc01">
  3. <input type="radio" name="location" value="loc02">
  4. <input type="radio" name="location" value="loc03">
  5. </form>
  6.  
  7. <script>
  8. $(function() {
  9. $('#form').change(function(a) {
  10. a.preventDefault();
  11. var formdata = new FormData($(this)[0]);
  12.  
  13. $.ajax({
  14. method: "POST",
  15. data: formdata,
  16. contentType: false,
  17. processData: false,
  18. success: function(a) { alert('done'); }
  19. });
  20. });
  21. });
  22. </script>
  23.  
  24. <?php
  25. // simplified
  26. update_user_meta( $user->ID, 'user_location', $_POST['location'] );
  27. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement