Good afternoon. I would like to know if it is possible to populate iframe inputs through JavaScript.
<iframe src="http://frame.com"width="100%" height="800" id="frame"></iframe>
I know the input name of the iframe and thought about it:
<script type="text/javascript">
function myFrame() {
$("input[name='txt_nm_requerente']").val("fernanda");
};
But it did not work.