HTML5 AJAX Responsive Contact Form With Google Maps
In this post we will discuss how to create a HTML5 AJAX Responsive Contact Form With Google Maps.I am using PHP as back end technology but you can use what ever you want.
We are doing form validation in both HTML5 as well as jQuery(JavaScript) level but if you want you can also write them for back end level also.
Index.Html
04 | < meta charset = "utf-8" > |
05 | < title >HTML5 AJAX Responsive Contact Form with Google Maps</ title > |
06 | < meta name = "viewport" content = "width=device-width, initial-scale=1.0" > |
07 | < meta name = "description" content = "" > |
08 | < meta name = "author" content = "" > |
10 | < link href = "css/main.css" rel = "stylesheet" type = "text/css" > |
13 | < script src = "js/jquery.min.js" ></ script > |
14 | < script src = "js/bootstrap.min.js" ></ script > |
15 | < script src = "js/jquery.isotope.min.js" ></ script > |
16 | < script src = "js/contact.js" ></ script > |
22 | < div class = "container" > |
26 | < h1 style = "padding:10px;text-align:center" >HTML5 AJAX Responsive Contact Form with Google Maps</ h1 > |
34 | < div id = "map-container" > |
35 | < iframe width = "100%" height = "100%" frameborder = "0" scrolling = "no" marginheight = "0" marginwidth = "0" src = "https://maps.google.com/maps?f=q&source=s_q&hl=en&geocode=&q=Qutub+Minar+Delhi,+Seth+Sarai,+Mehrauli,+New+Delhi,+Delhi,+India&aq=3&oq=quta&sll=37.0625,-95.677068&sspn=41.95363,86.572266&ie=UTF8&hq=&hnear=Qutub+Minar,+Kalu+Ram+Rd,+Seth+Sarai,+Mehrauli,+New+Delhi,+South+Delhi,+Delhi+110016,+India&t=m&z=14&ll=28.526407,77.187028&output=embed" ></ iframe > |
39 | < div id = "content" style = "padding:10px" > |
40 | < div class = "container" > |
43 | < h4 >Get in touch with us now!</ h4 > |
44 | Feel free to contact us by contact to get more information.< br />< br /> |
45 | < div class = "contact_form_holder" > |
46 | < form id = "contact" class = "row" name = "form1" method = "post" action = "" > |
49 | < label >Name < span class = "req" >*</ span ></ label > |
50 | < input type = "text" class = "full" name = "name" id = "name" /> |
51 | < div id = "error_name" class = "error" >Please check your name</ div > |
55 | < label >Phone < span class = "req" >*</ span ></ label > |
56 | < input type = "text" class = "full" name = "phone" id = "phone" /> |
57 | < div id = "error_phone" class = "error" >Please check your phone</ div > |
61 | < label >Email < span class = "req" >*</ span ></ label > |
62 | < input type = "text" class = "full" name = "email" id = "email" /> |
63 | < div id = "error_email" class = "error" >Please check your email</ div > |
67 | < label >Message < span class = "req" >*</ span ></ label > |
68 | < textarea cols = "8" rows = "10" name = "message" id = "message" class = "full" ></ textarea > |
69 | < div id = "error_message" class = "error" >Please check your message</ div > |
70 | < div id = "mail_success" class = "success" > Thank you. Your message has been sent.</ div > |
71 | < div id = "mail_failed" class = "error" >Error, email not sent</ div > |
73 | < p id = "btnsubmit" >< input type = "submit" id = "send" value = "Send" class = "btn btn-large" /></ p > |
80 | < div id = "sidebar" class = "span4" > |
82 | < div class = "widget latest_news" > |
83 | < h4 class = "title" >Reach Us</ h4 > |
87 | < div class = "widget widget-text" > |
88 | < h4 class = "title" >Other Details:</ h4 > |
Contact.js
01 | $(document).ready( function (){ |
02 | $( "#send" ).click( function (){ |
03 | var name = $( "#name" ).val(); |
04 | var phone = $( "#phone" ).val(); |
05 | var email = $( "#email" ).val(); |
06 | var message = $( "#message" ).val(); |
10 | if (name.length == 0) { |
12 | $( "#error_name" ).fadeIn(500); |
15 | $( "#error_name" ).fadeOut(500); |
18 | if (phone.length == 0) { |
20 | $( "#error_phone" ).fadeIn(500); |
23 | $( "#error_phone" ).fadeOut(500); |
26 | if (email.length == 0 || email.indexOf( "@" ) == "-1" || email.indexOf( "." ) == "-1" ){ |
28 | $( "#error_email" ).fadeIn(500); |
31 | $( "#error_email" ).fadeOut(500); |
34 | if (message.length == 0){ |
36 | $( "#error_message" ).fadeIn(500); |
38 | $( "#error_message" ).fadeOut(500); |
42 | $( "#send" ).attr({ "disabled" : "true" , "value" : "Loading..." }); |
47 | data: "name=" + name + "&email=" + email + "&subject=" + "You Got Email" + "&message=" + message, |
48 | success: function (data){ |
49 | if (data == 'success' ){ |
50 | $( "#btnsubmit" ).remove(); |
51 | $( "#mail_success" ).fadeIn(500); |
53 | $( "#mail_failed" ).html(data).fadeIn(500); |
54 | $( "#send" ).removeAttr( "disabled" ).attr( "value" , "send" ); |
Send.php
04 | $email_to = "info@hightechnology.in" ; |
05 | $name = $_POST [ 'name' ]; |
06 | $phone = $_POST [ 'phone' ]; |
07 | $email = $_POST [ 'email' ]; |
08 | $subject = $_POST [ 'subject' ]; |
09 | $message = $_POST [ 'message' ]; |
11 | $headers = "From: $email\r\n" ; |
12 | $headers .= "Reply-To: $email\r\n" ; |
14 | if (mail( $email_to , $subject , $message , $headers )){ |