I have created a small project in which I have to display a modal dialog for which I have used jquery-ui dialog.
I want to define the max height for the dialog in percent. I have tried several things but none of them are working.
Please could someone help me what could be the issue.
See http://jsbin.com/otiley/1/edit
Many thanks
$("#selector").dialog({width: $(window).width() * 0.8, height: $(window).height() * 0.8});
– Diactinic