i want to scroll 2 iframes simultaneously in the web page. Is there a way to do that? I have tried a lot but didn't find any solution.
$('#one').contentwindow.scrollTop = $('two').contentwindow.scrollTop;
$('#two').contentwindow.scrollTop = $('one').contentwindow.scrollTop;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tr>
<td>
<iframe id="one" src="http://api.jquery.com/scroll/" style="width: 300px; height: 400px;"></iframe>
</td>
<td>
<iframe id="two" src="http://api.jquery.com/scroll/" style="width: 300px; height: 400px;"></iframe>
</td>
</tr>
</table>
Note: My question here is how to synchronize scrolling with 2 iframe within the Table not DIV