I am using the JavaScript below to have a popup message of "Correct!" when the correct multiple choice answer is chosen, but how can I remove the "bridgew.az1.qualtrics.com says" before the "Correct!"?
Qualtrics.SurveyEngine.addOnReady(function()
{
var that = this;
var msg = 'Correct!';
jQuery("#NextButton").on('click',function(){
var correctrecode = 3;
var choiceid = jQuery("#"+that.questionId+" input[type='radio']:checked").attr("choiceid");
var selectedrecode = that.getChoiceRecodeValue ( choiceid );
if(correctrecode==selectedrecode){
alert(msg);
}
});
});
JavaScript for popup message
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.


