Javascript popupWin

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hthadani
    New Member
    • Oct 2006
    • 1

    #1

    Javascript popupWin

    I am giving the following command to execute the javascript popupwin command to bring up an url in a new window from the existing html page. Does not work with the following error given below.

    command:
    <a href="javascrip t:popupWin('htt p://java.sun.com/products/archive/j2se/1.4.2_03/index.html','35 0','300')">JRE 1.4.2_03</a>

    error:
    Line: 1
    Char: 1
    Error: Object expected
    Code: 0
    URL: file://c:\temp\version s.html
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    If popupWin is not defined, you will get this error. Use window.open() to open a popup window.

    Comment

    Working...