How to make a placeholder for a 'select' box
By Tan Lee Published on Mar 02, 2024 522
This post shows you How to make a placeholder for a 'select' box.
For example:
<select> <option value="1">C#</option> <option value="2">C++</option> </select>
If you want to add a placeholder to select for example: '--- Select ---'
You can modify your html as shown below.
<select> <option value="" disabled selected>--- Select ---</option> <option value="1">C#</option> <option value="2">C++</option> </select>
Categories
Popular Posts
Implement security headers for an ASP.NET Core
Jun 24, 2025
Structured Data using FoxLearn.JsonLd
Jun 20, 2025
RuangAdmin Template
Nov 13, 2024
Material Lite Admin Template
Nov 14, 2024