- Posts: 5
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
Example question: What is the gender of {p1name}? When I fill p1Name, p1Name input field goes slowly (offlinesurveys)
Correct and if there are a lot of EM conditions on the page that can take some time.On every keyup, checkconditions(this.value, this.name, this.type) is called.
<span class="inserted-name"></span>
<script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $('span.inserted-name').text($('#question{QID} input[type="text"]').val()); $('#question{QID} input[type="text"]').on('keyup', function(e) { $('span.inserted-name').text($(this).val()); }); }); </script>
Shouldn't that be moved to the thirdparty-app section?sdg_luj wrote: I am using offlinesurveys and I have some performace issues.