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

Count down with invisible counter

From Catglobe Wiki
Revision as of 09:24, 2 March 2009 by Catglobe (talk | contribs) (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. == Code == <...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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.

Code

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);