Posts

Showing posts with the label Html

Popups using Javascript and CSS

Image
In this post, I'm writing about an interesting way of displaying popups using javascript and css. These popups do not show up in a new window, but rather in the same page as a different box. You might have seen these kind of popups while logging in or during display of your profile details in various social networking sites or email websites like gmail. The idea here is to use css and div to display a box which embeds a separate html form of its own. Lets first create a the form elements for login: <div id="popupbox"> <form name="login" action="" method="post"> <div id="centertag">Username:</div> <div id="centertag"><input name="username" size="14" /></div> <div id="centertag">Password:</div> <div id="centertag"><input name="password" type="password" size="14" /></div> ...