// ==UserScript== // @name Qualtrics:Show All Questions // @description Show All Questions on Qualtrics (use in edit mode of survey) // @include https://*.qualtrics.com/*Edit* // @grant none // @version 0.0.2.20170713 // @namespace https://greasyfork.org/users/4252 // @downloadURL none // ==/UserScript== //Note: Only been tested in firefox jQuery(document).ready(function(){ if (jQuery(".EditSection").length){ //if in edit mode var div = jQuery("
").attr("href","#").addClass('btn btn-primary').click(OutputQuestions).appendTo("#ToolbarContainer div.right"); jQuery("").addClass('icon toolbar-icon-open').appendTo(div); jQuery("").text("Output Questions").appendTo(div); } }); function OutputQuestions() { var Questions = jQuery(".QuestionText").not("#TrashArea .QuestionText"); var output = jQuery(""); jQuery("").attr("id","button").attr("type","button").attr("onclick","ShowHideNAN()").text("Show/Hide Questions without numbers").appendTo(output); var table = jQuery("