- Posts: 231
- Thank you received: 43
Ask the community, share ideas, and connect with other LimeSurvey users!
$(document).ready(function(){ var previousText = "Back"; $('#moveprevbtn .ui-button-text').text(previousText); var clearAllText = "Exit and clear the application"; $('#clearall .ui-button-text').text(clearAllText); var captchaText = "Please confirm access to the application by answering the security question below and click continue."; $('#welcome p .captcha').text(captchaText); var loadAllText = "Load unfinished application"; $('#loadallbtn .ui-button-text').text(loadAllText); // THIS WON'T WORK // var returnToSurvey = "Back to the application" $('.dialog-upload .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button-text').text(returnToSurvey); });
var returnToSurvey = "Back to the application"; $('.dialog-upload .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button-text').text(returnToSurvey);
$(document).on("dialogopen", ".dialog-upload", function(event, ui) { var returnToSurvey = "Back to the application"; $('.dialog-upload .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button-text').text(returnToSurvey); });