0

Thanks and regards.Hello, I'm trying to put a dropdownlist inside an article but I don't know how, could you help me?, any advice. I use joomla 2.5

zoit
  • 617
  • 2
  • 20
  • 41
  • As @MONZTAAA describes, it is fairly easy to create a drop down list but is there some action you want associated with an item being selected? – Neil Robertson Jan 04 '14 at 22:54
  • Yes, I would love when someone choose one ítem, It can appear more information about this item. – zoit Jan 15 '14 at 06:54

1 Answers1

0

All you have to do is insert in your article the HTML code of a drop down list.

<select>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select> 

Go to your article and in the editor you will find a button which is a white page with these symbols: <> (Source Code Editor).

Once you click on this you will see your article in HTML format and you can insert here the code given above and edit it your own way.

Hope this helps.

Victor York
  • 1,621
  • 4
  • 20
  • 55