I have Multi Select which I would like to append it to a div, when I append, or html it to div the CSS or js not taking effect so it show as basic multi select. but when I copy ('#table').text("...") and past it in the div it work fine. I attached image so you can take look it.
var table = "<select id=\"s11\" class=\"s11\" multiple=\"multiple\"><option>All</option><option selected=\"selected\">Low</option><option selected=\"selected\">Medium</option><option selected=\"selected\">High</option></select>";
$('.table').html(table);

