- Posts: 7
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
Please Log in to join the conversation.
<style type="text/css"> /* Teilfragentexte linksbündig */ .ls-answers tbody .answertext { text-align: left; } </style>
<style type="text/css"> .ls-slider-item-row .control-label { text-align: left !important; } </style>
Please Log in to join the conversation.
Please Log in to join the conversation.
Habe ich - ich habe es schließlich selbst erwähnt.Hättest du vielleicht noch einen letzten Hinweis für mich, wie ich es hinbekommen kann, dass die beiden ersten Fragen dann ausgeblendet werden, ohne dass die bereits gewählten Werte verloren gehen?
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ var aq1='{AQ1.qid}'; var thisQuestion = $('#question{QID}'); $('input[type=text]', thisQuestion).on('slideStop', function(event) { $('#question'+aq1).hide(); $('#question{QID}').hide(); }); }); </script>
OR z1==5,
,Please Log in to join the conversation.
Please Log in to join the conversation.
$('.button-item', thisQuestion).on('click', function(event) {
Please Log in to join the conversation.
Please Log in to join the conversation.
<script type="text/javascript" charset="utf-8"> $(document).on('ready pjax:scriptcomplete',function(){ var aq1='{AQ1.qid}'; var aq2='{AQ2.qid}'; var thisQuestion = $('#question{QID}'); $('#ls-button-submit').hide(); $('#ls-button-previous').hide(); $('.button-item', thisQuestion).on('click', function(event) { $('#question'+aq1).hide(); $('#question'+aq2).hide(); $('#question{QID}').hide(); $('#ls-button-submit').show(); $('#ls-button-previous').show(); }); }); </script>
Please Log in to join the conversation.