Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

196
Views
¿Cómo puedo solucionar el problema con el iframe al recargar la página en Firefox?

si ingreso algo en el área de texto y vuelvo a cargar la página, mi código se muestra nuevamente en el iFrame. Sin embargo, el problema solo ocurre en Firefox.

 <div id="html-area"> </div> <textarea id="html-editor" placeholder="HTML" oninput="changer()"></textarea> <iframe id="viewer"></iframe> <script> function changer(){ var htmlcode = document.getElementById("html-editor").value; viewfield = document.getElementById("viewer").contentWindow.document; viewfield.open(); viewfield.write(htmlcode); viewfield.close(); } </script>

¿Alguien puede decirme cómo solucionar el problema en Firefox? Si ya hay un hilo similar, lo siento, no pude encontrar nada.

gracias por adelantado por la ayuda

about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Firefox tiene el valor de autocomplete por defecto en
debe desactivarlo si no necesita recuperar los datos al actualizar.

 <textarea ... autocomplete="off">

cuando usa document.write para modificar el contenido del iframe , se agrega una entrada automática al historial de la sesión para cada uso. así que debes limpiarlo al principio.

 viewfield = document.getElementById("viewer").contentWindow.document; viewfield.write(''); function changer() { var htmlcode = document.getElementById("html-editor").value; viewfield.open(); viewfield.write(htmlcode); viewfield.close(); }
about 4 years ago · Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!