
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Found 10483 Articles for Web Development

58K+ Views
To send an email using HTML forms, you need to add the email id to the action attribute of the form. In that, add email proceeding with mailto: i.e. mailto:emailid@example.com.ExampleYou can try to run the following code to send an email using HTML forms −Live Demo Student Contact Form Student Name: Student Subject:

2K+ Views
In this article, we are going to discuss how do we reset all the input fields in HTML forms. Here, we use the reset button to clear the input fields in HTML forms. In the HTML forms, we use the tag to take user input. To clear all the input in an HTML form, use the tag with the type attribute as reset. Syntax Following is the syntax of the reset button. Example 1 The following example demonstrates how do we reset all the input fields in HTML forms. In this example, we are going ... Read More

44K+ Views
This tutorial teaches us how to reset or clear a form using JavaScript. This option is very helpful for users in the situation where they have filled the wrong form and before submitting they get to know about it and now they want to delete all the data. If the form is too large then manually deleting everything may be hard so it's better to use the reset() method of JavaScript. The reset() method is defined in JavaScript and by just clicking on it the form which will be linked to its onclick() method will reset every input section of ... Read More

2K+ Views
With jQuery, you can easily clear HTML form fields. For this, jQuery: reset Selector is used. This will clear the HTML form fields.ExampleYou can try to run the following code to clear form fields with jQuery −Live Demo $(document).ready(function(){ $(":reset").css("background-color", "#F98700"); }); Student Name Student Subject

29K+ Views
Using HTML forms, you can easily take user input. The tag is used to get user input, by adding the form elements. Different types of form elements include text input, radio button input, submit button, etc. The tag, helps you to take user input using the type attribute. To clear all the input in an HTML form, use the tag with the type attribute as reset. Example 1 The following example demonstrates how to clear all the input in HTML forms. In this example, we are going to use the document.getElementId() to clear the text in ... Read More

7K+ Views
We use the tag by assigning password to the type attribute, to take a password input in HTML form. It hides the character as soon as a we enter the characters of the password set. This is also a single-line text input. Syntax Male Example 1 An example to implement how to take a password input in HTML is as follows − DOCTYPE html> Branch Enter password Re-enter password Example 2 Another example to take an input as password is given below. You can try to run the following code − DOCTYPE html> HTML Forms Add your details: Student Username: Password:

2K+ Views
Using HTML forms, we can easily take user input. The tag is used to get user input, by adding the form elements. Different types of form elements include text input, radio button input, submit button, text field area etc. To use radio buttons in HTML forms to get user input. Checkboxes are used when more than one option is required to be selected. They are also created using HTML tag and the type attribute is set to radio. S.No. Attribute & Description 1 type Indicates the type of input control and for checkbox input ... Read More

6K+ Views
Using HTML forms, we can easily take user input. The tag is used to get user input by adding the form elements. Different types of form elements include text input, radio button input, submit button, text field area etc. In this article, let us learn how to use radio buttons in HTML forms to get user input. Radio buttons are used when out of many options, just one option is required to be selected. They are also created using HTML tag and the type attribute is set to radio. S. No. Attribute & Description ... Read More

5K+ Views
If you want to allow a user to upload an external file to your website, you need to use a file upload box, also known as a file select box. This is also created using the element but type attribute is set to file.ExampleLive DemoYou can try to run the following code to upload an external file to your website − File Upload Here are the attributes of the file upload box −Sr.NoAttribute & ... Read More

18K+ Views
Using HTML forms, you can easily take user input. The tag is used to get user input, by adding the form elements. Different types of form elements include text input, radio button input, submit button, etc.Let’s learn about the tag, which helps you to take user input using the type attribute. The attribute is used with the form elements such as text input, checkbox, radio, etc.ExampleYou can try to run the following code to take user input using HTML Forms:Live Demo HTML Forms ... Read More