HTML <button> with formaction Attribute

You are Here:

HTML <button> with formaction Attribute

The formaction attribute specifies a URL to send a form data when the user clicks the submit button.

Note: The formaction attribute is only used for buttons with type="submit".

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <form action="/email.php" method="get"> Email: <input type="email" name="myemail"><br><br> <button type="submit">Submit to Email Page</button><br><br> <button type="submit" formaction="/subscription.php">Submit to Subscription Page</button> </form> </body> </html>

Attribute Value

ValueExplanation
URLSpecifies a URL to send a form data when the user clicks the submit button.

Reminder

Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in HTML.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author