Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RTL Confirm and Alert in Javascript

Can you make a confirm or alert show its message RTL and right-aligned?

like image 453
EBAG Avatar asked Feb 15 '26 11:02

EBAG


2 Answers

Try adding this at the beginning of your message: "\u200f\u200f"

for example:

alert("\u200f\u200f"+ message);

or

confirm("\u200f\u200f"+ message);
like image 122
iair007 Avatar answered Feb 18 '26 00:02

iair007


Programmatically no, but the user's culture setting for their machine should determine which way it's presented, at least in all current browsers. I'm not aware of a comprehensive "who supports it" list though.

like image 25
Nick Craver Avatar answered Feb 18 '26 01:02

Nick Craver