- Posts: 9
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
About <span class="value">x</span> customers order online.
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#question{QID} .other-item span.value').after($('#question{QID} label[for$="othertext"]')).remove(); }); </script>
LimeSurvey 2.7X is using a complete different template system. So nearly all workarounds which depended on HTML modification via Javascript need an update. With LS 3.0 the whole templatesystem changes again. So you might wait till LS 3.0 is hitting the street and then start the migration tests.nhotovas wrote: Do you have any idea why it shouldn't work on new lime versions?
About <span class="post-text"> customers order online.</span>
<script type="text/javascript" charset="utf-8"> $(document).ready(function() { $('#question{QID} input[type="text"]').parent().after('<div class="pull-left post-text-wrapper" style="padding:5px 0 0 5px;" />'); $('#question{QID} .post-text-wrapper').append($('#question{QID} span.post-text')); }); </script>