- Posts: 103
- Thank you received: 5
Ask the community, share ideas, and connect with other LimeSurvey users!
$(document).ready(function(){ if (typeof tokenlabel === "undefined"){ tokenlabel ="YOUR TOKEN LABEL : "; } if (typeof tokentext === "undefined"){ tokentext ="YOUR TOKEN TEXT DESCRIPTION"; } if (typeof tokenerror === "undefined"){ tokenerror ="<br><br><strong class='error'>YOUR ERROR MESSAGE with <a href=https://www.surveyurl.com/index.php/SURVEYSID/newtest/Y#>LINK BACK</a></strong>"; } if ($("#tokenform").length ) { $("#tokenmessage").html(tokentext); $("label[for='token']").text(tokenlabel); } else { $("#tokenmessage").html(tokentext+tokenerror); } });