Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KamikazeBot/938216d4af1747592972 to your computer and use it in GitHub Desktop.
Save KamikazeBot/938216d4af1747592972 to your computer and use it in GitHub Desktop.
The Qualtrics Bible -Kamikazebot's Fork
//Insert your snippets in the following format:
//Title:
//Description: Please include use cases, and what theme this code is compatible with
//Author:
/*
Code Here, please comment complex code
*/
//Insert your snippets in the following format:
//Title:
//Description: Please include information about use cases where applicable.
//Author:
/*
Code Here, please comment complex code
*/
//Title: Removing "Powered by Qualtrics"
/*Description:
Include this in the javascript of any page you would like to remove the Powered by Qualtrics tag/promo at the bottom of the screen.
The most common reason to need to remove this tag is when doing reaction studies, where any "extras" on the page could skew results.
This must be done using Javascript instead of CSS, due to how Qualtrics adds this tag to pages.
The code can be adjusted for additional uses by redefining the target element, or by redefining the styling of that element.*/
//Author: Anthony Rivas
<script> /*Use the "script" opening and closing tags only if you are placing this script in the header of your survey(to run on all pages)*/
Qualtrics.SurveyEngine.addOnload(function()
{
var plug = document.getElementById("Plug"); //Get the Defined element
plug.style.cssText += ';display:none !important;'; //Set the defined element's display style to "none"
});
</script>
//Insert your snippets in the following format:
//Title:
//Language:
//Publically Usable URL: Where available and useful
//Description: Please include use cases where applicable
//Author:
/*
Code Here, please comment complex code and include instructions for use.
*/
@spikeyorange
Copy link

this seems to only work to block the "Plug" on the first page of my survey. I've tried to place the code in the header of the survey as well as in the JS part of each survey question.

thoughts?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment