Reputation: 3438
I am using jQuery UI 1.10.x. I would like to move Close button to the right. How can I achieve it?
Upvotes: 1
Views: 2420
Reputation: 195
There is no built-in option for moving buttons.
You can achieve it by using your own style sheets (css).
See below css.
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
float: right;
}
Upvotes: 1