Tuesday, 3 July 2012

Re: zero-width dropdown menu on Zamzar site

In article <6b238ca952.jim@nails.abbeypress.net>,
Jim Nagel <netsurf@abbeypress.co.uk> wrote:

> Step 2, however, fails. It's a dropdown menu for selecting the output
> format you want. Netsurf 2.9 displays the menu at just about zero
> width and nothing in it is visible.

Needs JavaScript to present the options:

<select name="toExtensionSel" class="bodyBig">
<script language=javascript>
for(var i=0; i<toArray.length; i++) {
if (toArray[i].indexOf ("--") != -1){
document.write("<option class='optionHeader'
value=\""+toArray[i]+"\">"+toArray[i]+"</option>");
} else {
document.write("<option
value=\""+toArray[i]+"\">"+toArray[i]+"</option>");
}
}
</script>
</select>

--

Michael Drake (tlsa) http://www.netsurf-browser.org/

No comments:

Post a Comment