My code is not working for firefox but same code is working in chrome. Here is my code:
$( "#confirm" ).dialog({
        resizable: true,
        modal: true,
        buttons: {
            "Yes": function() {
                newWindow = window.open(url,"myWindow","status=1,width=870,height=530");
                newWindow.focus();
                $( this ).dialog( "close" );
             }
        }
   });
I want to bring focus if window is already opened. But not working in firefox.