Solved
Block Specific CSS?
I want to include css in my external stylesheet that is specific to certain blocks. Is it possible to target blocks? I have a custom button in my footer that I'd like to hide sometimes. It's related to this post:
https://www.qualtrics.com/community/discussion/2080/javascript-button-that-jumps-to-the-last-block-not-the-survey-end#latest
Best answer by MohammedAli_Rajapkar
You can try adding below code in the header section of "Look&Feel", change the "BlockID" with the specific BlockID in which you want to hide the button, and change ButtonID with the actual button ID which you want to hide.
Qualtrics.SurveyEngine.addOnload(function() {
if (jQuery("a[id='BlockID']").length > 0)
{
jQuery("#ButtonID").hide();
}
});
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
