html table - Hide vertical scrollbar in Iframe in IE9 -


i have embed iframe within 1 of rows of table.i able problem facing iframe coming vertical scroll bar. tried find solutions , included every bit of css remove scrollbar still not able so. using ie9.

$('<tr id = "pqr" ><td colspan="8">' + '<iframe src="../../priceband3/views/priceband.html" id="iframeid" style="width:1100px;overflow-y:hidden !hidden;scrolling:no;seamless:seamless"></iframe>' + '</td></tr>'); 

scrolling not style attribute attribute of iframe itself.

$('<tr id = "pqr" ><td colspan="8">' + '<iframe src="../../priceband3/views/priceband.html" id="iframeid" width="1100" scrolling="no" seamless></iframe>' + '</td></tr>'); 

Comments