- Posts: 17
- Thank you received: 0
Ask the community, share ideas, and connect with other LimeSurvey users!
<script type="text/javascript" charset="utf-8">
$(document).ready(function() {
// Hide the question
$('#questionID').hide();
// Get the URL param
var otx_id = getURLParameter('otx_id');
// Load the hidden question
$('#questionID input.text').val(otx_id);
});
</script>