Force number of characters
Challenge
You want to use automatically change question, but don't want to show the counter for the respondent. The Next button is often hided when this script is used.
Script
1 function jumpon()
2 {
3 document["query"]["dir"].value = "next";
4 document["query"].submit();
5 }
6 //defines how many milliseconds the question should be visible for the respondent
7 window.setTimeout("jumpon();", 1500);