Results 1 to 3 of 3

Thread: opening link within a popup in a new window under FF

  1. #1
    Join Date
    Dec 2007
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Question opening link within a popup in a new window under FF

    Hi guys,

    I've never been a vivid users of popups so not experienced at all on the way they behave.
    I'm working on this page where I need to push some contents in a popup window. In that popup window I have 1 single link (generated dynamically) that will send the user to a contact form. Everything works just fine in IE but in FF when the link is clicked the contact form opens in a new tab in the popup itself and not in a new window as I would like to.
    I have
    Code:
    <a target="_blank" href="code-and-some-parameters-sent-to-contact-form">Contacter ce partenaire</a>
    so the target is well set to _blank
    Is there any way to force the link to open in a new window under Firefox ?

    Regards
    FireWolf

  2. #2
    Join Date
    Dec 2007
    Location
    Ankara, Turkey
    Posts
    160
    Thanks
    2
    Thanked 2 Times in 2 Posts

    Default

    Not a preferable way but you can try the "window.open" Javascript function again for opening the link in a new window. If you set everything to "yes" or "1" ind the parameters part (such as "scroll=yes, location=yes") the new window should be a complete and a normal window

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Depending upon its settings, a browser may decide to do whatever it likes with a pop up. That said, if the browser will allow it, this is sufficient:

    Code:
    <a onclick="window.open(this.href,this.target);return false;" target="_blank" href="code-and-some-parameters-sent-to-contact-form">Contacter ce partenaire</a>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •