- Posts: 1
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#moveprevbtn').hide(); }); </script>
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#ls-button-previous').hide(); }); </script>
Related to that please have a look at bugs.limesurvey.org/view.php?id=14541 and my attempt to fix this: github.com/LimeSurvey/LimeSurvey/commit/...28fbfabef7639f42d52ff_funke wrote: Just a short update as the last post is more than four years old:
It looks as the ID name of the button has changed from "moveprevbtn" to "ls-button-previous" in the present version (3.14). At least in my installation the following code works better:
Code:<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('#ls-button-previous').hide(); }); </script>