Javascripts > No Right Click Javascripts > Prompt Box
Script Title: Prompt Box
Description: Will display a prompt box for where you can type in a particular name, and then will give a short description.
Example: Available
Copy the following code into your <HEAD></HEAD> tags.<script type="text/javascript"> function disp_confirm() { var name=confirm("Press OK button") if (name==true) { document.write("You pressed the OK button!") } else { document.write("You pressed the Cancel button!") } } </script>
Copy the following code between the <BODY></BODY> tags of your html page.<form> <input type="button" onclick="disp_confirm()" value="Display a button box"> </form>
Enter your name and email address to have this script sent right to your Inbox for later viewing. First Name Last Name Email