Ниже приведена моя попытка скрыть мой jumbotron
класс в iframe
с помощью Javascript.Мне не повезло!
Ошибка в моей консоли:
Невозможно прочитать свойство 'style' из неопределенного
Я не могупонять, почему это не работает - извините, если я здесь глупый, действительно не лучший в Javascript.Любая помощь будет оценена.
var iframe = document.getElementById("myFrame");
var elmnt = iframe.contentWindow.document.getElementsByClassName("jumbotron")[0];
elmnt.style.display = "none";
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<div class="container">
<div class="row justify-content-center">
<div class="col-8">
<iframe id="myFrame" style="" width="100%" border="0" frameborder="0" src="https://remelo.com/booking/c/1/remelo" height="789"></iframe>
</div>
</div>
</div>