Adscend

Click Here



Click Here

Monday

Prompt Dialog Box

Prompt

The prompt box prompts users to input some text.

Example: 1

<script type="text/javascript">
var name=prompt("What is ur name?");
</script>


Example: 2

<script type="text/javascript">
var name=prompt("What is ur name?");
alert(name);
</script>


If you type something like “hello”, and click “Ok”, a alert box will appear.

Example: 3

<script type="text/javascript">
var name=prompt("What is ur name?");
alert("Hello "+name);

If you type "hello", and click "Ok", another dialog box will appear:


Example: 4

<script type="text/javascript">
var num1=prompt("Enter number 1");
var num2=prompt("Enter number 2");
alert(num1*num2);
</script>





No comments:

Post a Comment