pop up ......can u suggest?

Discussion in 'JavaScript' started by nishithkant, Mar 19, 2009.

  1. #1
    Can anybody suggest me such a pop up.I want a popup window which will remain for long time and a user can be able to click inside this popup. I want that popup sholud be a div in which again link are to click and navigate
     
    nishithkant, Mar 19, 2009 IP
  2. SearchBliss

    SearchBliss Well-Known Member

    Messages:
    1,899
    Likes Received:
    70
    Best Answers:
    2
    Trophy Points:
    195
    Digital Goods:
    1
    #2
    SearchBliss, Mar 19, 2009 IP
  3. creativeGenius

    creativeGenius Well-Known Member

    Messages:
    273
    Likes Received:
    5
    Best Answers:
    1
    Trophy Points:
    120
    #3
    i also dont understand what exactly it is that you want to do, but regular popups gets blocked by browsers this day, how long the popup lasts depends on the user, they always have the option to close it immediately, specially if it's obtrusive
     
    creativeGenius, Mar 19, 2009 IP
  4. RoyalFlushed

    RoyalFlushed Peon

    Messages:
    34
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    hey, don't know exactly what you need, but maybe this helps you out :

    u can use a div, those won't be blocked by any popup-blocker.

    <div style="position:absolute;top:200px;left:200px;width:400px;height:200px;border:solid 1px #000000;">
    <table>
    <tr>
    <td><a href="youlink1here">Link uno</a></td>
    <td><a href="youlink2here">Link dos</a></td>
    <td><a href="youlink2here">Link tres</a></td>
    </tr>
    </table>
    </div>

    trough javascript you can modify the position of the "popup".

    Cheers
     
    RoyalFlushed, Mar 20, 2009 IP