I need an iframe with auto height (no vertical scrolling, it should take all the space it needs and scrolling the main page is just fine).
This does not happen with the current code that I have:
<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap IFrame Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<div class="row">
<div class="col-xs-6">Check the iframe at the right</div>
<div class="col-xs-6">
<div style="width:100%; height:auto;">
<iframe src="http://www.wsj.com/" style="width:100%; height:auto;overflow-y:hidden"></iframe>
</div>
</div>
</div>
</body>
</html>