Hi guys,
my problem is that in ie11 my dynamic drop down select list not showing at all!!,, i mean that in all browsers is working except ie11,, i m using append method like that,

Code:
 
function loadDynamicDdl(ajaxUrl , ddlId) {     
    $.ajax({
        dataType:'json',
        type: 'GET',
        url: ajaxUrl,
        cache:false,
       // async:false,
        success:function
...