- Posts: 8
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script> $(function(){ $('input:text').on('keyup',function(){ var A1val = Number($('#x').val()); var B1val = Number($('#y').val()); $('#z').val(A1val + B1val); }); }); </script>