Responsive iframe
Small snippet for a responsive iframe solution with fixed aspect-ratio.
HTML
<iframe src="http://www.rootsol.co.uk" frameborder="0" allowfullscreen></iframe>
CSS
html,body{
height:100%;
}
JavaScript
$(document).ready(function(){
$('iframe').width('100%').height('99%');
});