Last active
January 16, 2023 19:41
-
-
Save LMG23/f3b3b6d1fbd815a4f8eee4c78304b4d0 to your computer and use it in GitHub Desktop.
Integrated Feedback Button
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--integrated feedback button --> | |
<a href="add-your-link-here" id="usbl-integrated-button">Give Feedback</a> | |
<!--ADD GETFEEDBACK DIGITAL INSTALLATION SNIPPET HERE --> | |
<script> | |
//Hide GetFeedback Digital Default button | |
window.usabilla_live("hide"); | |
//Find a Link and open de GetFeedback Digital Feedback form when the user clicks on the link | |
document.getElementById("usbl-integrated-button").addEventListener("click",function(){ | |
window.usabilla_live("click"); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment