Open form action in another html page iframe -


i'm trying open form action url in iframe witch in html page. opened in iframe witch on same page code:

<form class="form" action="myconnexionurl" target="iframe-myaccount" method="post">      <input type="text" id="login" name="login" placeholder="id">      <input type="password" id="pass" name="pass" placeholder="psw">      <input type="submit" value="connexion"> </form>  <iframe src="" name="iframe-myaccount"></frame>  

so, question simple: how can open form action url in iframe in html page?

as far know, there no way access iframe directly. think you'll have pass data parent , have adjust url embedded iframe. i'd through server-side scripting, may able through javascript.


Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -