I have one html structure
<form id="myvalidation">
<iframe>
<form id="insidevalidation">
<input type="text" name="myname" id="myname" />
</form>
</iframe>
<input type="submit" />
</form>
I need to validate input field which is inside the iframe
but i am not able to find the name
for validation from outside the iframe.
"myname": {
required:true,
validEmail:true
//onlyNumeric:true
},
Not sure how to get myname
from outside the iframe.
please help