Log in

View Full Version : Looking for Pop-up Login and Singup



romirockstar
04-09-2010, 01:52 AM
hi everyone
Romi is here
i am looking for pope-up login and singup in same page like this website
http://todo.ly/ can anyone help me to do such kind of thing
thanks in advance
waiting for your replies
have a wonderful friday

Regards,
@Rockstaronline

romirockstar
04-12-2010, 09:15 AM
hello everyone
seems nobody interested to help me :(
i really want that kind of log-in

BLiZZaRD
04-12-2010, 10:20 PM
All it is is javascript hiding a div. Clicking the button shows the div. There are tons of JS scripts that show you how to do that. Using the CSS to place the hidden/shown div where you want it, and you have the results you are after.



<script type="text/javascript">
<!--
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block')
e.style.display = 'none';
else
e.style.display = 'block';
}
//-->
</script>