Input
Enter your name and click on the button
var str = "Hej " + getObject("Inmatning1").value + "!";
alert(str);
The Script:
Enter text in the box and click on the button
var str = getObject("Textarea1").innerText;
alert(str);
The Script:
Text Area
Option 1
Option 2
Option 3
Option 4
Select an option and click on the button
var str = getObject("Radioknapp1").getValue();
alert(str);
The Script:
Radio Button
Option 1
Option 2
Option 3
Option 4
Option 5
Option 6
Select at least one option and click on the button
var str = getObject("Kryssruta1").getValue();
alert(str);
The Script:
Check Box
Select an option and click on the button
var str = getObject("Listbox1").value;
alert(str);
The Script:
List Box