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
This might work for you: http://www.searchbliss.com/webmaster_tools/Pop-Up-Ads-Generator.htm If I'm understanding you correctly.
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
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