Skip to content

Commit

Permalink
Added Remove Powered By
Browse files Browse the repository at this point in the history
  • Loading branch information
tafakkur committed Oct 24, 2020
1 parent 3e0d15c commit fdd5d6b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions JavaScript Files/Remove Powered By Qualtrics.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Remove the "Powered By Qualtrics" thingy.
// It is available at multiple places, but since their script runs at addOnLoad, it fails.
// This runs at addOnReady and hence works.

<script>

Qualtrics.SurveyEngine.addOnReady(function()
{
var plug = document.getElementById("Plug"); //Find "Powered By" on the page
plug.style.cssText += ';display:none !important;'; //Set the defined element's display style to "none"

});

</script>

0 comments on commit fdd5d6b

Please sign in to comment.