How to embed a button
- In the dashboard, go to plugins and download Custom CSS & JS
- Add Custom JavaScript
function myFunction() {
/* Get the text field */
var copyText = document.getElementById(“myInput”);
/* Select the text field */
copyText.select();
copyText.setSelectionRange(0, 99999); /* For mobile devices */
/* Copy the text inside the text field */
document.execCommand(“copy”);
}
3. Now go to your Elementor Post and Add HTML code
<!– The text field –>
<input type=”text” value=”SUPREME” id=”myInput”>
<!– The button used to copy the text –>
<button onclick=”myFunction()”>Click to Copy Coupon Code</button>
4. then click on Advanced, add custom CSS
.tooltip {
position: relative;
display: inline-block;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 140px;
background-color: #444;
color: #fff;
text-align: center;
border-radius: 8px;
padding: 8px;
position: absolute;
z-index: 1;
bottom: 150%;
left: 50%;
margin-left: -75px;
opacity: 0;
transition: opacity 0.3s;
}
.tooltip .tooltiptext::after {
content: “”;
position: absolute;
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: #222 transparent transparent transparent;
}
.tooltip:hover .tooltiptext {
visibility: visible;
opacity: 1;
}