vote up 2 vote down star

With alerts you can have text inputs. I was hoping you could put check boxes in. Is this possible?

http://www.w3schools.com/JS/js_popup.asp

flag

74% accept rate

4 Answers

vote up 7 vote down check

No, you would need to build out a dialog box in order to achieve this.

You are able to achieve this with relative ease through jQuery and more specifically the jQuery UI plugin, allowing dialog boxes to come up without too much know-how

link|flag
jQuery UI has a brilliant one. It's just a shame the UI framework is so huge. Oh well, needs must. – Ben Shelock Sep 27 at 13:17
It is indeed huge. Once you become more advanced with JavaScript or jquery, you'll be able to produce your own stuff like dialogs with 1/5 of the code - frameworks certainly do help make life easier, though :) – jakeisonline Sep 27 at 13:29
vote up 5 vote down

No. The only options are:

  • alert (display string);
  • confirm (display string and get yes/no|true/false back);
  • prompt (display string and get input string back)

You can create your own modal dialog using a variety of techniques. Under the hood, they all essentially do the same thing - display a separate web page in a popup window or iFrame and disable input access to the rest of the browser until the popup is closed. These are pretty easy to get wrong (hard to use + very annoying) but when done right they offer the developer a lot of power - since it's a complete web page you control, you can pass complex JavaScript objects between the dialog and the main browser window, instead of having to rely on the primitive interaction modes offered by the out-of-the-box dialogs.

link|flag
@anon why the DV? – Rex M Sep 27 at 1:32
vote up 3 vote down

Pretty shure it isn't possible. However, you can simulate a "alert box" with the contents you need. JQuery, for example, is a great javascript framework to achieve that.

link|flag
why the downvote? – yoda Sep 27 at 1:25
All the answers got downed, no one ever bothered commenting why. – jakeisonline Sep 27 at 1:30
strange .. wonder why people does that .. – yoda Sep 27 at 1:37
Spelling perhaps :) – Ben Shelock Sep 27 at 12:47
vote up 1 vote down

no, but you can create a function that opens a alert box with html in it, like on facebook.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.