Link to home
Start Free TrialLog in
Avatar of Aspnet_9
Aspnet_9

asked on

How to open a modal window using Javascript

Hi

I am opening a new window using window.open() in JavaScript.
How can i make this window Modal?

Right now I am using


 var OpenWindow = function (URL) {
            window.open(URL, null, "height=680,width=980,status=no,toolbar=no,menubar=no,location=no");
        }

Thanks
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Avatar of Aspnet_9
Aspnet_9

ASKER

Is jquery the only way, can we do it with simple JavaScript?
ASKER CERTIFIED SOLUTION
Avatar of leakim971
leakim971
Flag of Guadeloupe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
ok