In bootbox.js, by default Ok button showing after Cancel button. I want it to be first and then cancel. Here is the situation of current scenario,
http://paynedigital.com/img/confirm-simple.png
I need Ok button first. I have scene its documentation but didn't find a way to do it.
You can do it by CSS.
.modal-footer button {
float:right;
margin-left: 10px;
}
Here is working fiddle http://jsfiddle.net/9L3A9/51/