- Posts: 4
- Thank you received: 1
Ask the community, share ideas, and connect with other LimeSurvey users!
#movenextbtn, #movesubmitbtn { display:none; }
$(document).ready(function() { $('#movenextbtn, #movesubmitbtn').show(); });
Think,tpartner wrote: A more secure method would be to remove the {NAVIGATOR} placeholder from navigator.pstpl and insert the navigation buttons with JavaScript. Details of that script would vary by template and you would need to find a way to detect the last page so you could insert a "Submit" button instead of a "Next" button.
<div id="navigatot-js"></div> <script> $(function() { var navigator="{htmlentities(NAVIGATOR)}"; $(navigator).appendTo("#navigatot-js"); }); </script>
$(navigator).appendTo("#navigatot-js");
You're rightholch wrote: So "(navigator)" and not "(navigator}"?
No, I don't think so. Most basic question types will work without JavaScript although Expression Manager functionality will be impaired. I have several clients who insist that their surveys be fully accessible, even without JavaScript.Shouldn't Limesurvey prevent entering surveys with disabled javascript on client side out of the box?
I would like to see a serverside only version of LS, but isn't LS 2.5 and LS 3.0 working without Javascript for respondents?tpartner wrote: No, I don't think so. Most basic question types will work without JavaScript although Expression Manager functionality will be impaired.
If it's not : this clearly a bug and must be fixed.jelo wrote: ....
I am not sure the serverside checking is completely implemented. ......