Hi there,
I have a jQuery select which works in most browsers axcept IE. The code is as follows;
<script type="text/javascript">
function parseCatSelect()
{
$('#d_cat select:empty').parent().html('<p><span class="placeholder">No categories available</span></p>');
$('#d_cat select').attr('name', 'e');
}
function loadCategories()
{
$('#d_cat').html('<p><span class="placeholder">Please wait…</span></p>').load('/brand_categories.asp', {label: $('#d_brand select option:selected').val()}, parseCatSelect);
}
$('#d_brand').load(
'/brands.asp',
function() {
$('#d_brand select').attr('name', 'd').live('change', loadCategories).trigger('change');
}
);
</script>
Could anyone help with a solution for this issue please? You can see this live (in FireFox) at www.wearecapital.com
Thank you.