hello i tired to do popup that will open on size 700,350 with scroll only to up and down ? how i do that ?
You can try out this code: <a href="#" onClick="window.open ('terms.php', 'newwindow', config='height=500, width=400, toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no')">[Read the terms and conditions]</a> terms.php file will not contain any code except the php tags and text to display in the pop up window. Good luck. Ram
Finding "popup" on title - 31 result(s); displaying 1-15 http://javascriptbank.com/javascript/find-k-cG9wdXA=---t-title---l-en---page-1.html
Hi Yuri If you did want to consider CSS popups, take a look at http://www.astral-consultancy.co.uk/cgi-bin/hunbug/doco.cgi?11540 Hope this helps
That was a great like.. I loved it. That is the perfect kind of pop-up i want to create.. I wonder do you think I can put a timer on it to make it come up ever 15 seconds?
Hi Nullptr, If you want to call the procedure that opens the pop-up every 15 seconds, you can call it using the setInterval function. This continuely repeats the call to the function after the duration you specify. Hope this helps.