Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

365
Vistas
how to display data from textbox to another page?

I want to collect data in the form of a paragraph in the text box and then show that to a new page. I have added code for HTML for the announcement page (from where I want to take data and show it there as well), and for the archive page ( where I want to show the data), How should I do it? Kindly help me out. I am new to HTML therefore I am not sure if I am doing this the right.


    <!DOCTYPE html>
    <html>
        <link rel="stylesheet" href="stylem.css" />
        <script type="text/javascript" src="index.js"></script>
    <head>
        <title>Announcement Page</title>
    </head>
    <body>
        <form method="Post" action="archive.html">
            <textarea type="text" id="textbox" class="textbox" cols="40" rows="10"></textarea>
            <input type="submit" id="save" name="save" value="submit" onclick="handleSubmit()"/>
    
        </form>
    </body>
    
    </html>


    <!DOCTYPE html>
    <html>
    <head>
        <title>
            Archive
        </title>
        <link rel="stylesheet" href="stylea.css" />
    </head>
    <body>
    
       <h2> Announcement : <span id="result-text"> </span> </h2>
    
    </body>
    
    </html>


    function handleSubmit (){
        const textbox = document.getElementById('textbox').value;
    
        localStorage.setItem("Data", textbox);
    
        return;
    }


    window.addEventListener('load', () => {
        const params = (new URL(document.location)).searchParams;
        const textbox = params.get('textbox');
    
        document.getElementById('result-text').innerHTML= textbox;
    })

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You're putting your "Data" into local storage so you need to access it there instead of trying to pull it from the document location

window.addEventListener('load', () => {
    const data = localStorage.getItem('Data');

    document.getElementById('result-text').innerHTML = data;
});
about 4 years ago · Juan Pablo Isaza Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda