mcDropdown jQuery Plug-in - version 1.3.2

mcDropdown jQuery Plug-in - version 1.3.2


Recently we did upgrade from MVC2 to MVC4 and updated the mcDropdown 1.2.x to  1.3.2

But when we launch our application we got error "operation aborted" on IE 7, we did some analysis and found in mcdropdown 1.2.07 added following line to add the list to body.

  $list
        // move list to body -- this allows us to always calculate the correct position & width of the elements
.appendTo("body")


We are using @Html.DropdownList on cshtml page, which is trying to create dropdown before Body tag closed. so it it throwing error, but same code is working fine on IE8 and above and Firefox and Chrome.

if we comment this line it will work fine, but is there any way we can do workaround without alter the plugin

Thanks
Senthil