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

135
Views
Tengo un problema con HTML en Google Sites

Debido a que no entiendo Google Scripts, uso Google Sites, y cada vez que intento ingresar este código, no sucede nada, así que utilicé otro fragmento de código que me diría si no estaba funcionando, y decía "Usuario solicitud cancelada", cuando hace clic en el botón, debería aparecer un menú desplegable de actualizaciones y las próximas actualizaciones, pero no sucede nada.

 <button onclick="myFunction()">Press for Announcements</button> <script> function myFunction(){ alert("New:\n- New Code\n- Update Button\n- About the Creator Section\n- Contact the Creator\n\nComing Soon:\n- Quote Code YouTube Channel\n- More Codes\n- Accounts\n- Commenting\n- Pre-made Code\n- C/C++\n- Code Sandbox"); } </script>
about 4 years ago · Juan Pablo Isaza
1 answers
Answer question

0

Su problema es que no puede usar los cuadros de diálogo de alerta en Google Sites. Google Scripts puede ser confuso. Por lo general, es bueno abrir la consola web, ya que estos errores deberían darle una idea de lo que está sucediendo.

Este cambio agregará su texto a un nuevo DIV dentro del sitio. Me imagino que quieres que haga mucho más, pero espero que esto te ayude a entender qué estaba fallando.

 <button onclick="createHTMLalert()">Press for Announcements</button> <script> function createHTMLalert(){ if(!document.getElementById('announcements_alert')){ let announcements_alert = document.createElement('div'); announcements_alert.id = 'announcements_alert'; document.body.appendChild(announcements_alert); announcements_alert.innerText = "New:\n- New Code\n- Update Button\n- About the Creator Section\n- Contact the Creator\n\nComing Soon:\n- Quote Code YouTube Channel\n- More Codes\n- Accounts\n- Commenting\n- Pre-made Code\n- C++ and C for Game Making\n- Quote Code Twitter Page\n- Code Park"; } } </script>
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!