Hi,
i would to move the countdown near the question answer (short text question),
i try to use this code (like for my last topic:
www.limesurvey.org/forum/can-i-do-this-w...e-next-button#153095
):
form the original:
to this:
in question source:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#question{QID} .form-group').append($('#LS_question{QID}_Timer'));
$('#LS_question{QID}_Timer').addClass('alert');
$('#LS_question{QID}_Timer').addClass('alert-warning');
});
</script>
or:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('#LS_question{QID}_Timer').appendTo($('.form-group'));
});
</script>
or:
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
$('.form-group').append($('#LS_question{QID}_Timer'));
});
</script>
but nothing happens, please, do you have any ideas?
thanks,
Marco