Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

123
Views
Have an input display a text but with a different value

So I have the following form:

<form>

  <input type="button" value="1" >
  <input type="button" value="2">
  <input type="button" value="3">
  <input type="button" value="4">

  <button>Create account</button>

</form>

Those values are to choose a package from a database (those are the IDs). But on the screen I don't want them to display a number but a name (basic, advanced, pro, pro+). Is it possible to have a value and display a different text?

about 4 years ago · Juan Pablo Isaza
3 answers
Answer question

0

You can use input type radio for choose a different type of value.

<form action="/action_page.php">
<label><input type="radio" name="radio" value="1"> Basic </label>
<label><input type="radio" name="radio" value="1"> Advanced </label>
<label><input type="radio" name="radio" value="3"> Pro</label>
<label><input type="radio" name="radio" value="4"> Pro + </label>
<button type="submit">Create account</button>
</form>

about 4 years ago · Juan Pablo Isaza Report

0

Use a button element:

<form>
  <button type="button" value="1">Basic</button>
  <button type="button" value="2">Advanced</button>
  <button type="button" value="3">Pro</button>
  <button type="button" value="4">Pro+</button>

  <button>Create account</button>

</form>

about 4 years ago · Juan Pablo Isaza Report

0

style a placeholder or data-attribute, or a for= label.

about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!