Main Page: Difference between revisions

From Erbessd Instruments
No edit summary
No edit summary
Line 121: Line 121:
<html>
<html>
<script>
<script>
   alert("JavaScript está habilitado");
   alert("JavaScript está inhabilitado");
</script>
</script>
</html>
</html>

Revision as of 16:07, 25 June 2025

Products

File:Low Range.png File:Defiant.png


Software

   
   <button onclick="togglePages(this)" style="margin-top: 10px;">Show more +</button>
   
   <button onclick="togglePages(this)" style="margin-top: 10px;">Show more +</button>
   
   <button onclick="togglePages(this)" style="margin-top: 10px;">Show more +</button>
   File:Defiant.png
   <button onclick="togglePages(this)" style="margin-top: 10px;">Show more +</button>
   
   <button onclick="togglePages(this)" style="margin-top: 10px;">Show more +</button>

<html> <script>

 function togglePages(button) {
   var content = button.nextElementSibling;
   if (content && (content.style.display === "none" || content.style.display === "")) {
     content.style.display = "block";
     button.textContent = "Show less −";
   } else if (content) {
     content.style.display = "none";
     button.textContent = "Show more +";
   }
 }

</script>


<html> <script>

 alert("JavaScript está inhabilitado");

</script> </html>


</html>