displayLabel = note;
}
}
- $('rdetail_online').appendChild(elem('a', {href:href,'class':'classic_link'}, displayLabel));
+ // IE in quirks mode doesn't render CSS styling for links where the class attribute
+ // comes after the href attribute, apparently; we can use Dojo to ensure the class
+ // attribute comes first
+ dojo.place('<a class="search_link" href="' + href + '">' + displayLabel + '</a>', dojo.byId('rdetail_online'));
if (note && note != displayLabel) {
$('rdetail_online').appendChild(elem('span', {'class':'url_note'}, ' - ' + note));
}