Main Page: Difference between revisions
From Erbessd Instruments
No edit summary |
No edit summary |
||
| Line 116: | Line 116: | ||
} | } | ||
</script> | </script> | ||
<html> | |||
<script> | |||
alert("JavaScript está habilitado"); | |||
</script> | |||
</html> | |||
</html> | </html> | ||
Revision as of 15:51, 25 June 2025
Products
File:Low Range.png File:Defiant.png
Software
File:Defiant.png
<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á habilitado");
</script> </html>
</html>
