How to create a radio button object?
Are you preparing for IT certification? With practice questions, study notes, interactive quizzes, tips and technical articles, uCertify PrepKits ensure that you get a solid grasp of core technical concepts to ace your certification exam in first attempt.
How to create a radio button object?
Rating:
A radio button object can be created by using the <input> tag within the <form>...</form> tag. The syntax for creating a radio button is as follows:
<body>
<form>
<input type="radio" name="r1">
<input type="radio" name="r1">
</form>
</body>
</html>
Rating:
Was this information helpful?
Other articles
- What is the status property?
- What is an argument?
- How to use the defaultStatus property?
- What is a function call?
- What is the multiply-by-value operator?
