How to set jquery ui dialog to fixed position

By default the jquery ui dialog will scroll with the page. Some time we need the dialog position as fixed.

Just add a style to solve this.

.ui-dialog
{
      position:fixed;
}

No comments:

Post a Comment