Rise,
В iframe может быть и input, и кнопка, и много чего еще, и кнопка может становиться активной в зависимости от состояния input - я так понял задачу ТС
Что-то вроде
В основной странице
<button id="test">Тест активности в iframe</button>
<iframe id="ifr" src="http://sample.dom/iframe.html"></iframe>
<script>
test.onclick = function() {
alert(ifr.contentWindow.document.querySelector("#next").style.display);
}
</script>
В странице, загружаемой в iframe
<input id="inp" type="text">
<button id="next" style="display:none">Next</button>
<script>
inp.oninput = function() {
if(this.value) next.style.display = "block";
else next.style.display = "none";
}
</script>