28112 sujets

CSS et mise en forme, CSS3

Alors j'aurais tendance à dire que NON, bien que tu puisse intégrer du JS dans le 'onchange' de ton select !
Honnêtement c'est moche et pas simple à modifier ensuite, et en plus ça reste du JS Smiley biggol

<select onchange="switch(this.value){case 'Manufacturer':containText.innerText='Welcome Manufacturer';break;case 'Supplier/Distributor':containText.innerText='Welcome Supplier/Distributor';break;case 'B2C Company':containText.innerText='Welcome B2C Company';break;case 'B2B Company':containText.innerText='Welcome B2B Company';break;case 'Local Business':containText.innerText='Welcome Local Business';break;default:containText.innerText = '';}">
  <option>Tell Us About Yourself</option>
  <option>Manufacturer</option>
  <option>Supplier/Distributor</option>
  <option>B2C Company</option>
  <option>B2B Company</option>
  <option>Local Business</option>
</select>

<div id="containText"></div>