+ 2
How can I get the input from a text to appear in an iframe?
5 Answers
+ 5
you need not iframes for that
just little js will work
<input type=text id=input>
<div id=value></div>
<button onclick="function(){
document.getElementById("value").innerHTML=document.getElementById("input").value;
}">display</button>
+ 3
no it's not broken
you can use <script> tag there might be typing error
you can see others code or my code if you are stuck
+ 1
thank you
+ 1
it's a broken cide
+ 1
code*