Advertisement
Guest User

Untitled

a guest
Jun 28th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. <?php
  2. $result = array(
  3. 'State' => 'Done',
  4. 'ID' => 1
  5. );
  6.  
  7. wp_send_json( $result );
  8. ?>
  9.  
  10. $( '#contact_form' ).bootstrapValidator({
  11. fields: {
  12. // ...
  13. },
  14. submitHandler: function( formInstance ) {
  15. $.post( "../send-message", $("#contact_form").serialize(), function( result ) {
  16. alert( result );
  17. });
  18. }
  19. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement