In my MVC4 project, I have included 4 divs on a page and encountered an issue with them. To see the problem clearly, you can check the JSFiddle URL provided below:
The issue seems to occur only in IE10, as the functionality works fine in browsers like Chrome or Firefox.
jQuery(document).ready(function () {
jQuery(".HomeContent").hide();
jQuery(".HomeDivHeading").click(function () {
jQuery(this).next(".HomeContent").slideToggle(250);
});
});
In IE10, when I slide down any of the divs, it appears distorted initially
I am looking for a solution to this problem where the divs slide down smoothly without any display issues in IE10.