How to

How to submit HTML Form to WhatsApp | Sending Form fields to WhatsApp Using HTML,CSS and Javascript

Ravindra Kumar

Whatsapp Form Code Generator Tool
In this post I am going to explain how can we submit HTML form to WhatsApp. By using this functionality form’s data will be summited to chat interface of WhatsApp, As normally we chat on WhatsApp. This example will tell you about sending form fields to WhatsApp by using JavaScript.

Step 1:

First you need to design a HTML form and give the id to each input field because these id will be used in JavaScript code to send the data to WhatsApp such as

<input type="text" id="name" class="form-control" placeholder="Name" required>

and in the form element you just need to use action attribute and you also need to use a button by pressing this button the input fields will be sent to WhatsApp by using JavaScript code so you can use button as following

Responsive Landing page source code in Html, CSS and Bootstrape

<button type="button" class="btn btn-primary" onclick="whatsapp();">Submit</button>

HTML Code

                   <form action="#" class="form-group">
                        <div class="form-group mb-3">
                            <input type="text" id="name" class="form-control" placeholder="Name" required>
                        </div>
                        <div class="form-group mb-3">
                            <input type="email" id="email" class="form-control" placeholder="Email" required>
                        </div>
                        <div class="form-group mb-3">
                            <input type="text" id="phone" class="form-control" placeholder="Phone Number" required>
                        </div>
                        
                        <div class="form-group mb-3">
                            <textarea id="message" cols="30" rows="5" class="form-control" placeholder="Message"></textarea>
                        </div>
                        <div class="text-end">
                            <button type="button" class="btn btn-primary" onclick="whatsapp();">Submit</button>
                            <button type="button" class="btn btn-danger" data-bs-dismiss="modal">Cancel</button>
                        </div>
                    </form>

Step 2:

Now, Create a JavaScript function called whatsapp() and this function will be called when someone clicks the button of the form and by using this function data will be sent to the WhatsApp interface.so first you need to take some variables which is used to hold the values of input fields.

JavaScript Code

<script>
function whatsapp(){
var name = document.getElementById("name").value;
var email = document.getElementById("email").value;
var phone = document.getElementById("phone").value;
var date = document.getElementById("date").value;
var message = document.getElementById("message").value;
 
var url = "https://wa.me/9182728581?text="
+"*Name :* "+name+"%0a"
+"*Email :* "+email+"%0a"
+"*Phone :* "+phone+"%0a"
+"*Date :* "+date+"%0a"
+"*Message :* "+message;
 
window.open(url,'_blank').focus();
}
</script>

I hope you got all information which was required to make this form and send it to WhatsApp. You can check the following videos as well.

Submit HTML form’s data to Google Sheet | Sending HTML Form’s data to google sheet

[Download]Responsive Login Page Using HTML, CSS, and JavaScript

Sign Up page design Source Code Using HTML, CSS and Bootstrap

Responsive Landing page source code in Html, CSS and Bootstrape

Whatsapp Form Code Generator Tool

Ravindra Kumar

Ravindra is a passionate full stack developer and dedicated blogger with a flair for crafting user-friendly web applications and insightful articles. With expertise spanning front-end and back-end technologies, Ravindra brings ideas to life through innovative coding solutions.

Suggested Reading

Call to undefined method Intervention\Image\ImageManager::make() in Laravel

The error “Call to undefined method Intervention\Image\ImageManager::make()” typically happens when you’re trying to use the make() method from the Intervention Image package but haven’t correctly set up the manager or are using the wrong instance. Solution Make sure you’re using Intervention\Image\Facades\Image facade, not ImageManager directly. 1. Correct Usage in Laravel In your controller or wherever […]

How to redirect http to https in IIS

o redirect HTTP to HTTPS in IIS (Internet Information Services), you have a few options depending on your setup. Here’s how to do it step-by-step: Method 1: Using IIS HTTP Redirect Module This works best for simple websites and requires the HTTP Redirect feature to be installed. Steps: Open IIS Manager. Select your website from […]

How to redirect non-www to www in htaccess file

To redirect non-www to www using your .htaccess file, add the following code: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ https://www.%{HTTP_HOST}%{REQUEST_URI} [L,R=301] Combined with HTTP to HTTPS redirect If you also want to force HTTPS and redirect non-www to www, here’s a combined version: </p> RewriteEngine On # Force HTTPS RewriteCond %{HTTPS} off RewriteRule ^(.*)$ […]

How to redirect http to https in htacccess file

To redirect all HTTP traffic to HTTPS using .htaccess, you can use the following code snippet: RewriteEngine On RewriteCond %{HTTPS} off RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301] Steps: Locate the .htaccess file in the root directory of your website (often public_html/). If there is no .htaccess file, create one. Paste the above code at the top of […]

Whatsapp Contact Form Source Code Html CSS Javascript

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Contact Form</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"> <style> body { background-color: #f8f9fa; } .contact-form { max-width: 600px; margin: 50px auto; padding: 20px; background: #fff; border-radius: 10px; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); } </style> </head> <body> <div class="container"> <div class="contact-form"> <h2 class="text-center mb-4">Contact Us</h2> […]

Making WhatsApp Order Form using HTML, CSS, Javascript

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Order Form</title> <!-- Bootstrap CSS --> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous"> <script> function sendOrderToWhatsApp() { // Retrieve form values var name = document.getElementById('name').value; var email = document.getElementById('email').value; var contact = document.getElementById('contact').value; var address = document.getElementById('address').value; var pincode = document.getElementById('pincode').value; var landmark = document.getElementById('landmark').value; // Retrieve product selections var […]