On an html page, how can I align the ‘warning’ line in the below confirm call, to appear in the middle of the pop-up window?
confirm('You are about to delete 5 rows. \nWARNING: Strawberry cakes won\'t be effected!');
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can’t. The
confirm()window style (including dimensions) can vary between browsers and operating systems and you can’t be sure of the font used either.You might be better off using something like jQueryUI to create a seemingly modal dialog window to replace
confirm()with something that looks better and integrates more with the look and feel of your site. (Demo here).