var val= confirm("Are you sure to cancel?");
By default, the above line of code will bring a popup with two choices, Ok, Cancel and Ok will be the default choice. I want change the default choice to be Cancel and I would like to swap the both button's position. So Cancel will be displaying first and Ok comes later.
How can I achieve this?