Jquery dialog with modal true is not working

Jquery dialog with modal true is not working

Hi folks,

I used jquery dialog plugin to create overlay dialog. Dialog works fine. But i also set property modal=true to hide/inactive all background screen. For some reason it was not working. 

Here is a dialog sample::

 $("#main_pre_note").dialog({
        resizable: false,
        height: 200,
        width:484,
        modal: true,
        title: '<span class="icon"></span>&nbsp;Tittle text',
        autoOpen: false   
    });

 $("#main_pre_note").dialog('open')  

Anybody have any idae?