I have a question about easy scrolling through content in html/css. This is what I have:
In the left column I have my data. In the right column I load an iframe when you click on a link in the left column. Does someone know how I can easily scroll but that my right iframe stays in that position?
This is my html code: (I used bootstrap)
<div class="row">
<div class="span6">
<div class="row" id="errors">
<div class="span6>
</div>
<div class="span6>
</div>
....
</div>
</div>
<div class="span6">
<div id="side-content">
<iframe id="iframe" src="" scrolling="no" frameborder="0"></iframe>
</div>
</div>
</div>