Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Java by (9.5k points)

Below is the code I’ve written so far for popup window in Javascript using button: 

 <div data-role="popup" id="myPopupDialog4">

    <a href="#" data-rel="back" class="ui-btn ui-corner-all ui-shadow ui-btn ui-icon-delete ui-btn-icon-notext ui-btn-right">Close</a>

    <div data-role="header">

       <h4>Post Update </h4>

    </div>

    <div data-role="main" class="ui-content">

             <pre><B>

             <div id="resultDayOfWeek"></div>

             <div id="resultNum"></div>

             <div id="resultDir"></div>

             <div id="resultStop"></div>

             <div id="resultTime"></div>     

             </B> 

             </pre>

    <fieldset data-role="controlgroup">

        <legend>Choose Status</legend>

       <label for="Arrived/Left">Arrived/Left</label>

       <input type="radio" name="status" id="Arrived/Left" value="Arrived/Left">

       <label for="Delayed">Delayed</label>

       <input type="radio" name="status" id="Delayed" value="Delayed">  

       <label for="Canceled">Canceled</label>

       <input type="radio" name="status" id="Canceled" value="Canceled">

       <label for="getupdate">getupdate from others</label>

       <input type="radio" name="status" id="getupdate" value="getupdate">

       <label for="Other">Other</label>

       <input type="radio" name="status" id="Other" value="Other">

       </fieldset>

       <textarea name="addinfo" id="info"> Comments goes here.... </textarea>

       <input type="submit"  value="Submit" onclick="postSubmit();">  

       <div id="poststatus"></div>   

    </div>  

    <div data-role="footer" >

       <h1>Footer Text</h1>

    </div>

 </div>

Can anyone tell me how to do this? 

1 Answer

0 votes
by (19.7k points)

Use window.open:

var referenceToNewWindow = window.open(url, name, features);

Interested in Java? Check out this Java tutorial by Intellipaat.   

Related questions

0 votes
1 answer
asked Mar 31, 2021 in Java by dante07 (13.1k points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
asked Mar 18, 2021 in Java by sheela_singh (9.5k points)
0 votes
1 answer
asked Feb 16, 2021 in Java by dante07 (13.1k points)

Browse Categories

...