popup in javascript

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Francisco Birrer

    popup in javascript

    hi

    im search a code that permit work it whit a other page.

    Im explain, search in a popup load other web page.

    Somebody can helpme??

    thk
  • Peter Michaux

    #2
    Re: popup in javascript

    On May 21, 5:13 pm, Francisco Birrer <fbir...@gmail. comwrote:
    hi
    >
    im search a code that permit work it whit a other page.
    >
    Im explain, search in a popup load other web page.
    >
    Somebody can helpme??
    >
    thk
    If you are trying to open a new window then "window.ope n" may be what
    you want

    window.open("ht tp://google.com/");

    You could use this in a link

    <a href="http://google.com/" onclick="window .open('http://
    google.com/');">google in new window</a>

    There are many ways to write this but perhaps this will get you
    started.

    Peter

    Comment

    Working...