PDA

View Full Version : What is a prompt box in website designing?



sarvodyaseo
09-25-2017, 08:52 AM
Hello Friends I want to know what a prompt box in website designing is.

dennis123
09-28-2017, 08:30 AM
Prompt() is a method of the window object.
It is similar with alert box except for one addition.
Prompt Box have “Cancle Button” on the pop up window.
Prompt Box have “textbox” , which allows user to enter value.

<html>
<head>
<script type="text/javascript">
function show_prompt()
{
var name=prompt("Please enter your name","Pritesh");
if(name!=null && name!="")
{
document.write("<p>Hello " + name + "</p>");
}
}
</script>
</head>
<body>

<input type="button"
onclick="show_prompt()"
value="Show prompt box"/>

</body>
</html>

Timensound
09-29-2017, 04:38 AM
It is really basic window but I want to match it with my website design. I want to change design of prompt window.

Ritika gosh
09-29-2017, 06:46 AM
A prompt box is often used if you want the user to input a value before entering a page.