I have a page that changes media on a page, like pictures or PDF's, using JQuery so that each user click doesn't require a page refresh / new database access.
I have a DIV container that holds all this activity. It works and looks great! When I add runat="server" to the DIV tag, all my nice behaviour breaks. This is without any code written yet to manipulate the object server side. For some reason, my styles / behaviours do not get applied correctly.
I'm guessing there is something simple, but I'm tired of guessing. I'm hoping someone on here knows why that might be happening?
Edit: This is for an ASP.Net application.
<div id="slidingContent" runat="server" >
<div class="item" id="media3" name="media3">
My media here.
</div>
</div>