OK. Say I have a question called "What is your age", with the code a1 and the ID 11700, using the default template. And I want to hide the whole row with the question name, so that only the answer is shown, but only for question a1. I activated javascript. What should I put in the source code of the question? I tried this code, but it didn't work.
<script>
jQuery(document).ready(
function(){
document.getElementById("questiontext11700").style.display='none';
}
);
</script>
I probably don't know how to call the question by id. Can you help me, please?
EDIT: I got it to work! I just used this script, putting the question ID (11700 after div#question) and it seems to work fine (hope it works in Internet Explorer too).
<script>
jQuery(document).ready(
function(){
$('div#question11700 td.questiontext').parent().hide();
}
);
</script>