Toggle menu
876
3.8K
30.2K
279.1K
Catglobe Wiki
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Force number of characters: Difference between revisions

From Catglobe Wiki
New page: == 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 ==...
(No difference)

Revision as of 09:45, 2 March 2009

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

function jumpon()      
{     
      document["query"]["dir"].value = "next";
      document["query"].submit();
}
//defines how many milliseconds the question should be visible for the respondent
window.setTimeout("jumpon();", 1500);