I don't want to be vague, but I'm not sure what is going on.
This code works:
this.J.button_update.click(function () { self.J.dialog_hold.dialog({ resizable: false, modal: true, width: 305, height: 360 }); });
It produces:

As you can see, there is a lot of space on the right border. What you may not notice is that all my content is turned off by about 5 pixels. To fix this, I thought I would simply reduce the width of the jquery dialog by 5 pixels as follows:
width: 300, // decreased by 5
However, for some reason this breaks the dialogue. He produces this:

How to fix the problem?
The following is a scenario of the problem:
javascript jquery html css
nativist.bill.cutting
source share