HomeCategory

Personal Protective Equipment

AVANTAGEHeadquarters
Organically grow the holistic world view of disruptive innovation via empowerment.
OUR LOCATIONSWhere to find us?
/wp-content/uploads/2022/12/img-footer-map.png
GET IN TOUCHAvantage Social links
Taking seamless key performance indicators offline to maximise the long tail.

© Founding Minds 2026.

Copyright Founding Minds 2026.

button.style.border = "none"; button.style.color = "gray"; button.style.position = "absolute"; button.style.top = "5px"; button.style.right = "10px"; // Copy only the content of the

 element without the button text
                button.addEventListener("click", function () {
                    button.remove();  // Temporarily remove button

                    // Copy the text inside 
                    let code = codeBlock.innerText;  // Get content from 
                    navigator.clipboard.writeText(code).then(() => {
                        button.innerText = "Copied!";
                        setTimeout(() => (button.innerText = "Copy"), 2000);
                    }).catch(() => {
                        button.innerText = "Failed to Copy";
                    }).finally(() => {
                        // Restore the button
                        codeBlock.appendChild(button);
                    });
                });

                // Position the button in the code block
                codeBlock.style.position = "relative";
                codeBlock.appendChild(button);
            });
        });