I want to apply select2 to a bunch of jquery elements on the page that all have the same class name but it looks like if i call select2() on an element that already has had
Working solution:
$('.MyDripdowns:not([class^="select2"])').each(function (i, obj) { $(obj).select2({width: "455px"}); })
Links: