User-1038772411 posted
Set a max-height property on your modal window to prevent it from exceeding a certain height.
Then set overflow-y: auto on your modal window to have a vertical scroll bar pop up if the content exceeds the height.
To force the vertical scroll bar to show up regardless of whether the content overflows, set it to overflow-y: scroll instead.
Try with this, may be this will help you
.css({ "max-height": screen.height * .8, "overflow-y": "auto" })...