Hi All,
How can we set a value to iframe textbox element either in JS/Jquery
<head>
<script type="text/javascript">
function load()
{
alert("Frame is loaded");
myframe.document.getElementById("user_email").value = "<?php echo $var ?>";
}
</script>
</head>
<body>
<iframe onload="load()" id="myframe" name="myframe" src="http://www.gigpayrr.com/signup" width="700px" height="600px">
<p>Your browser does not support iframes.</p>
</iframe>
</body>