Thanks to some help here in the community I was able to hide the “powered by Qualtrics” button that usually appears on each survey page at the lower right corner.
I’m using the following JS code on the first question in each of my survey blocks:
Qualtrics.SurveyEngine.addOnReady(function()
{
/*Place your JavaScript here to run when the page is fully displayed*/
jQuery('#Plug').attr('style', 'display:none !important');
});This works just fine. However, it unfortunately doesn’t work on the very last survey page, i.e. where the “end of survey” message appears because on that particular page there is no option to add JS code. Is there any other way I could hide that button?


