how can I change my HTML Output with jQuery? My Magento-Shop gives me an definition List, but I want these lists as a dropdown (select/options) form. I'm a jQuery Trainee ... not a Pro ;)
So I need some tipps or hints. Which were the keywords
<dl id="list">
<dt>Erste Überschrift</dt>
<dd>
<ol>
<li><a href="http://www.google.com/">link 1</a></li>
<li><a href="http://www.bing.com/">link 2</a></li>
<li><a href="http://www.yahoo.com/">link 3</a></li>
</ol>
</dd></dl>
is my output and I want it as a dropdown
<select id="list">
<option value="" selected>Erste Überschrift</option>
<option value="http://www.google.com/">Google</option>
<option value="http://www.bing.com/">Bing</option>
<option value="http://www.yahoo.com/">Yahoo</option>
Thanks for your help ... I only need a hint .. a searchword or sth. How can I manipulate the output?