XCS
XCS

Reputation: 28137

Style new Chrome's alert window

Is it possible to style the new Chrome alert boxes, added in version 29?

Run this javaScript in Chrome's console:

alert("This is new")

enter image description here

I ask this because the new window actually looks more like a dialog.

It also displays a tooltip with the coordinates while being dragged.

http://i.snag.gy/xLIu0.jpg

Upvotes: 12

Views: 8153

Answers (1)

ryan
ryan

Reputation: 6655

No, you cannot style dialog boxes (including the newly designed one). Use a JS/HTML modal if you need to style a popup instead.

Upvotes: 15

Related Questions