I was using the Add class method
$("select[name='" + ABC+ i + "']").addClass('addBorder');
This was working in Chrome , FF , safari but not on IE So changed it to the .css property ;
$("select[name='" + ABC + i + "']").css({"border-color":"red"});
But this is not working either in IE ; Does any one have more suggestions on it ?
$('select[name="' + ABC + i + '"]')