Results 1 to 3 of 3

Thread: Looking for Pop-up Login and Singup

  1. #1
    Join Date
    Apr 2010
    Location
    Australia
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Lightbulb Looking for Pop-up Login and Singup

    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

  2. #2
    Join Date
    Apr 2010
    Location
    Australia
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    hello everyone
    seems nobody interested to help me
    i really want that kind of log-in

  3. #3
    Join Date
    Aug 2005
    Location
    Other Side of My Monitor
    Posts
    3,494
    Thanks
    5
    Thanked 105 Times in 104 Posts
    Blog Entries
    1

    Default

    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.

    Code:
    <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>
    {CWoT - Riddle } {Freelance Copywriter} {Learn to Write}
    Follow Me on Twitter: @InkingHubris
    PHP Code:
    $result mysql_query("SELECT finger FROM hand WHERE id=3");
    echo 
    $result

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •