I'm having issues in populating a select list in IE.
The following snippet works fine in Chrome, Firefox and Safari browsers.
Are there any obvious known issues with this snippet that would prevent the information populating?
I can't figure out if it's the button IE doesn't like of the Select box.
Any ideas guys?
<table>
<tr>
<td><input type="text" style="width:200px" id="txtCompanySelectList">
<input type="button" value="Company Search" onClick="prepareCompanies();">
</td>
</tr>
<tr>
<td>
<select name="divCompanySelectList" multiple id="divCompanySelectList" style="height:300px; width:325px; font-family:Verdana, Geneva, sans-serif;" onChange="prepareFetchListsPopulateCompanys(this.selectedIndex); tabbar.goToNextTab();">
</select>
</td>
</tr>
</table>
I can't provide a live link as it's communicating with secure data on a live database with user access privileges.
Thanks