简体   繁体   中英

reset forms inside an iframe from same domain

I am using a 3rd party chat service that makes you use iframe to host your own chat. They allow you to place html and javascript so I was wondering how i can add a button to clear the forms in the "formsframe" iframe

main frame

<iframe src="http://www.chat.com/529552/?main" name="mainframe" id="mainframe"></iframe>

forms frame

<iframe src="http://www.chat.com/529552/?forms" name="formframe" id="formframe"></iframe>

forms names : name, email, message

  $(document).ready(function() {
    $('#formframe').ready(function() {
         $('#formframe').content().find('form').append('<input type="reset" value="Reset" />');
      });
   });

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM