alert message

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • reneecccwest

    alert message

    alert("Please choose your favoriate");

    Is there any way I can customize the alert message box and text?

    thanks,
    s/RC
  • Michael Winter

    #2
    Re: alert message

    On 9 Apr 2004 10:13:47 -0700, reneecccwest <reneecccwest@h otmail.com>
    wrote:
    [color=blue]
    > alert("Please choose your favoriate");
    >
    > Is there any way I can customize the alert message box and text?[/color]

    Change the string? :)

    You can only specify what text is shown, nothing else. The icons, dialog
    title, button text, etc. are set by the browser, only.

    Mike

    --
    Michael Winter
    M.Winter@blueyo nder.co.invalid (replace ".invalid" with ".uk" to reply)

    Comment

    • reneeccc west

      #3
      Re: alert message

      but I saw a customized alert message box on somehwere
      It is nicely changed the icons, dialog title, button text, and box color
      and text format)

      man.. I cannot remember the link..

      *** Sent via Developersdex http://www.developersdex.com ***
      Don't just participate in USENET...get rewarded for it!

      Comment

      • William Morris

        #4
        Re: alert message

        What you saw was probably simply a window.open(... command pointing to a
        webpage with all the customizations you talk about.

        - Wm

        --
        William Morris
        Semster, Seamlyne reProductions
        Visit our website, http://www.seamlyne.com, for the most comfortable
        historically inspired clothing you can buy!

        "reneeccc west" <reneecccwest@h otmail.com> wrote in message
        news:4076efbf$0 $198$75868355@n ews.frii.net...[color=blue]
        > but I saw a customized alert message box on somehwere
        > It is nicely changed the icons, dialog title, button text, and box color
        > and text format)
        >
        > man.. I cannot remember the link..
        >
        > *** Sent via Developersdex http://www.developersdex.com ***
        > Don't just participate in USENET...get rewarded for it![/color]


        Comment

        • Joakim Braun

          #5
          Re: alert message

          "reneecccwe st" <reneecccwest@h otmail.com> skrev i meddelandet
          news:c1c86eae.0 404090913.139f8 0c1@posting.goo gle.com...[color=blue]
          > alert("Please choose your favoriate");
          >
          > Is there any way I can customize the alert message box and text?
          >
          > thanks,
          > s/RC[/color]

          If compatibility isn't an issue, IE has showModalDialog ().

          Joakim Braun


          Comment

          • reneeccc west

            #6
            Re: alert message

            that might be a smiliar way of customizing an alert box using
            window.open instad of alert.
            let me try that way too.
            thanks,


            *** Sent via Developersdex http://www.developersdex.com ***
            Don't just participate in USENET...get rewarded for it!

            Comment

            • William Morris

              #7
              Re: alert message

              If you don't mind programming strictly for IE5.5 and higher, take a look
              around MSDN for the showModalDialog method.


              "reneeccc west" <reneecccwest@h otmail.com> wrote in message
              news:4076fdd6$0 $198$75868355@n ews.frii.net...[color=blue]
              > that might be a smiliar way of customizing an alert box using
              > window.open instad of alert.
              > let me try that way too.
              > thanks,
              >
              >
              > *** Sent via Developersdex http://www.developersdex.com ***
              > Don't just participate in USENET...get rewarded for it![/color]


              Comment

              • Hywel

                #8
                Re: alert message

                In article <c1c86eae.04040 90913.139f80c1@ posting.google. com>,
                reneecccwest@ho tmail.com says...[color=blue]
                > alert("Please choose your favoriate");
                >
                > Is there any way I can customize the alert message box and text?[/color]

                alert("This is my text");

                --
                Hywel I do not eat quiche


                Comment

                • reneeccc west

                  #9
                  Re: alert message

                  Sorry for the confusion.
                  One of the contents that I was asking about text is the text format
                  (such as color, size, etc), not chaning string.
                  thanks

                  *** Sent via Developersdex http://www.developersdex.com ***
                  Don't just participate in USENET...get rewarded for it!

                  Comment

                  Working...