Results 1 to 2 of 2

Thread: Custom message

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Feb 2001
    Location
    Egypt
    Posts
    179

    Custom message

    Hello,

    Can I customize alert function in JavaScript to show buttons other than "ok". such as "yes and no" or "ok cancel" ...

  2. #2
    Fanatic Member Gimlin's Avatar
    Join Date
    Dec 2001
    Location
    Hell
    Posts
    734
    Alert:

    <SCRIPT LANGUAGE="JavaScript">
    <!--
    window.alert("Type your message here...")
    // -->
    </SCRIPT>

    Prompt

    <SCRIPT LANGUAGE="JavaScript">
    <!--
    var NAME = prompt("Type your message here...","")
    //ACTION
    ")
    // -->
    </SCRIPT>

    Confirm

    <SCRIPT LANGUAGE="JavaScript">
    <!--
    if (!confirm(Type your message here...)){
    //ACTION
    }
    // -->
    </SCRIPT>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width