html iframe no scroll bar code example
Example 1: iframe no scroll
<iframe src="otherpage.html" scrolling="no" style="overflow:hidden;"></iframe>
Example 2: removing scroll bar of iframe
<iframe src="http://buythecity.com" scrolling="no" style=" width: 550px; height: 500px; overflow: hidden;" ></iframe>