Untitled


SUBMITTED BY: Guest

DATE: June 15, 2014, 5:06 p.m.

FORMAT: Text only

SIZE: 478 Bytes

HITS: 1141

  1. <script>
  2. $(function() {
  3. //twitter bootstrap script
  4. $("button#submit").click(function(){
  5. $.ajax({
  6. type: "POST",
  7. url: "process.php",
  8. data: $('form.contact').serialize(),
  9. success: function(msg){
  10. $("#thanks").html(msg)
  11. //$("#form-content").modal('hide');
  12. },
  13. error: function(){
  14. alert('failed');
  15. }
  16. });
  17. });
  18. });
  19. </script>

comments powered by Disqus