hello all, How can i get pop up windows for my site?Is there any code which would help me do this? Pl help me..
You may find these links helpful... http://www.quackit.com/html/codes/html_popup_window_code.cfm http://www.quackit.com/javascript/popup_windows.cfm
Put this between your <head> tags. <script type="text/javascript"> <!-- function Popup() { window.open("ENTER URL HERE", "Window", "status = 1, height = 300, width = 300, resizable = 0") } //--> </script> Code (markup): and change your <body> to this: <body onLoad="Popup()"> Code (markup): By the way, you can change the height and width to whatever you want.