Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3233932
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 17, 20262026-05-17T17:20:01+00:00 2026-05-17T17:20:01+00:00

I want open window.open as modal popup. var features = ‘resizable= yes; status= no;

  • 0

I want open window.open as modal popup.

 var features = 'resizable= yes; status= no; scroll= no; help= no; center= yes;
 width=460;height=140;menubar=no;directories=no;location=no;modal=yes';
    window.open(href, 'name', features, false);

I can use Window.ShowModelDialog(), but in my child window I am calling parent javascript method. That is not happening with ShowModelDialog().

 function CallParentScript(weburl) {
       alert(weburl);
       if (weburl != null) {
           var url = weburl;

            window.opener.SelectUserImageCallback(url);
            window.close();
            return false;
       }
   }

If I use window.open(). I can call Parent javascript. But window is not modal.

How to solve this? Can I write something in child popup to always top?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-17T17:20:02+00:00Added an answer on May 17, 2026 at 5:20 pm

    A pop-up is a child of the parent window, but it is not a child of the parent DOCUMENT. It is its own independent browser window and is not contained by the parent.

    Use an absolutely-positioned DIV and a translucent overlay instead.

    EDIT – example

    You need jQuery for this:

    <style>
    html, body {
        height:100%
    }
    
    
    #overlay { 
        position:absolute;
        z-index:10;
        width:100%;
        height:100%;
        top:0;
        left:0;
        background-color:#f00;
        filter:alpha(opacity=10);
        -moz-opacity:0.1;
        opacity:0.1;
        cursor:pointer;
    
    } 
    
    .dialog {
        position:absolute;
        border:2px solid #3366CC;
        width:250px;
        height:120px;
        background-color:#ffffff;
        z-index:12;
    }
    
    </style>
    <script type="text/javascript">
    $(document).ready(function() { init() })
    
    function init() {
        $('#overlay').click(function() { closeDialog(); })
    }
    
    function openDialog(element) {
        //this is the general dialog handler.
        //pass the element name and this will copy
        //the contents of the element to the dialog box
    
        $('#overlay').css('height', $(document.body).height() + 'px')
        $('#overlay').show()
        $('#dialog').html($(element).html())
        centerMe('#dialog')
        $('#dialog').show();
    }
    
    function closeDialog() {
        $('#overlay').hide();
        $('#dialog').hide().html('');
    }
    
    function centerMe(element) {
        //pass element name to be centered on screen
        var pWidth = $(window).width();
        var pTop = $(window).scrollTop()
        var eWidth = $(element).width()
        var height = $(element).height()
        $(element).css('top', '130px')
        //$(element).css('top',pTop+100+'px')
        $(element).css('left', parseInt((pWidth / 2) - (eWidth / 2)) + 'px')
    }
    
    
    </script>
    
    
    <a href="javascript:;//close me" onclick="openDialog($('#content'))">show dialog A</a>
    
    <a href="javascript:;//close me" onclick="openDialog($('#contentB'))">show dialog B</a>
    
    <div id="dialog" class="dialog" style="display:none"></div>
    <div id="overlay" style="display:none"></div>
    <div id="content" style="display:none">
        Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin nisl felis, placerat in sollicitudin quis, hendrerit vitae diam. Nunc ornare iaculis urna. 
    </div>
    
    <div id="contentB" style="display:none">
        Moooo mooo moo moo moo!!! 
    </div>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When the user clicks on a link, I want to open a modal window
I want to open a folder window, in the appropriate file manager, from within
I've opened a new window with window.open() and I want to use the reference
I have a page where I open a modal window. It is really just
I want to open a file for reading, the C++ way. I need to
I want to open a TCP client socket in Python. Do I have to
I want to open and manipulate Excel files with ActiveX. I've had success with
I want to open a save file dialog, have the user enter a filename,
I want to open a file dialog box in user control. I used using
Suppose I want to open a file in an existing Emacs session using su

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.