How to move code into popup window without separate HTML?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • rkyakkala
    New Member
    • Oct 2010
    • 11

    How to move code into popup window without separate HTML?

    Hi,
    Following is my code.Here i am able to see dropdownlist and text field in a page by clicking a link.but now i need to get this as a popup window but not in a separate html.could you please help me how can i do this..thanks in advance.

    Code:
    <table border="0" align="center" bgcolor="999999">
    <tr>
    <td>choose from the list</td>
    <td>
    <select name="com.smarts.launch.class">
    <option value="Router">Router</option>
    <option value="Interface">Interface</option>
    <option value="IP">IP</option>
    </select>
    </td>
    </tr>
    <tr>
    <td>Enter Host Name</td>
    <td><input type="textfield" name="com.smarts.launch.instance"/></td>
    </tr>
    <tr>
    <td height="38" colspan="2">            <div align="center">
    <input type="submit" name="submit" value="click"></td>
    </tr>
    </table>
    i need to display the output in a pop window but not in a html.what ever i am saying in html page i need to see like a pop window just like when we login into bytes site.
    it's little bit important could any body give suggestions how can i solve.
    Last edited by Niheel; Dec 13 '10, 06:24 AM.
  • johny10151981
    Top Contributor
    • Jan 2010
    • 1059

    #2
    The log in page in byte site is not traditional popup window. I have used and develop with this type of pop up window.

    Simply try with floating DIV with display style none and inline and ofcourse you will have to write some javascript code to do that

    Comment

    Working...