How do I use jquery to create an overlay contact form

onTheInternet

I wrote some jquery that creates an overlay box with log in information. When the user presses 'Log In' on the navigation, it works great.

Fiddle

I did have a separate page for a contact form. But I've decided I'd rather just have an overlay contact form, just like the log in. However, the second object doesn't display like the log in form does.

I must be doing something wrong but I'm not sure what it is

HTML

<!--POP UP FORM-->
<div id="login-box" class="login-popup">
    <a href="#" class="close"><img src="images/mini_green_x2.png" class="btn_close" title="Close Window" alt="Close" /></a>
    <form action="https://www.theiracenter.com/customerLoginAction.gsx" method="post">
        <label for="username">Username:</label>
        <br />
        <input class="topLogin" type="text" name="login" width="125px" />
        <br />
        <label for="password">Password:</label>
        <br />
        <input class="topLogin" id="passwordText" type="password" name="password" width="125px" />
        <input type="hidden" name="pd" value="C05" />
        <br />
        <input type="submit" id="loginSubmit" value="Submit" />
    </form>
</div>

<div id="contact-box" class="login-popup">
    <a href="#" class="close"><img src="images/mini_green_x2.png" class="btn_close" title="Close Window" alt="Close" /></a>
    Contact Us!
</div>

<div class="d5-d10 m1" id="navHolder">
    <ul id="mainNavigation">
        <li><a href="#login-box" class="login-window">Log In</a></li>
        <li><a href="#contact-Box" class="login-window">Contact</a></li>
        <li><a href="investment.html">Investment</a></li>
        <li><a href="faq.html">FAQ</a></li>
    </ul>
</div>

JQUERY

<script type="text/javascript">
$(document).ready(function () {
    $('a.login-window').click(function () {

        // Getting the variable's value from a link
        var loginBox = $(this).attr('href');

        //Fade in the Popup and add close button
        $(loginBox).fadeIn(300);

        //Set the center alignment padding + border
        var popMargTop = ($(loginBox).height() + 24) / 2;
        var popMargLeft = ($(loginBox).width() + 24) / 2;

        $(loginBox).css({
            'margin-top': -popMargTop,
            'margin-left': -popMargLeft
        });

        // Add the mask to body
        $('body').append('<div id="mask"></div>');
        $('#mask').fadeIn(300);

        return false;
    });

    // When clicking on the button close or the mask layer the popup closed
    $('body').on('click', 'a.close, #mask', function () {
        $('#mask , .login-popup').fadeOut(300, function () {
            $('#mask').remove();
        });
        return false;
    });
});
</script>

And CSS

/*LOG IN POP UP*/
/* Mask for background, by default is not display */
#login-box label{
    font-family:'Droid Sans', sans-serif;
    color:#6EBE44
}

#login-box img{
    float:right;
}

#mask {
    display: none;
    background: #000;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 999;
}

.login-popup {
    display: none;
    background: #666666;
    padding: 10px;
    border: 2px solid #ddd;
    float: left;
    font-size: 1.2em;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 99999;
    box-shadow: 0px 0px 20px #999;
    /* CSS3 */
        -moz-box-shadow: 0px 0px 20px #999;
    /* Firefox */
        -webkit-box-shadow: 0px 0px 20px #999;
    /* Safari, Chrome */
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px;
    /* Firefox */
        -webkit-border-radius: 3px;
    /* Safari, Chrome */;
}

img.btn_close {
    Position the close button
    float: right;
    margin: -28px -28px 0 0;
}

fieldset {
    border: none;
}

form.signin .textbox label {
    display: block;
    padding-bottom: 7px;
}

form.signin .textbox span {
    display: block;
}

form.signin p, form.signin span {
    color: #999;
    font-size: 11px;
    line-height: 18px;
}

form.signin .textbox input {
    background: #666666;
    border-bottom: 1px solid #333;
    border-left: 1px solid #000;
    border-right: 1px solid #333;
    border-top: 1px solid #000;
    color: #fff;
    border-radius: 3px 3px 3px 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    font: 13px Arial, Helvetica, sans-serif;
    padding: 6px 6px 4px;
    width: 200px;
}

form.signin input:-moz-placeholder {
    color: #bbb;
    text-shadow: 0 0 2px #000;
}

form.signin input::-webkit-input-placeholder {
    color: #bbb;
    text-shadow: 0 0 2px #000;
}

.button {
    background: -moz-linear-gradient(center top, #f3f3f3, #dddddd);
    background: -webkit-gradient(linear, left top, left bottom, from(#f3f3f3), to(#dddddd));
    background: -o-linear-gradient(top, #f3f3f3, #dddddd);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f3f3f3', EndColorStr='#dddddd');
    border-color: #000;
    border-width: 1px;
    border-radius: 4px 4px 4px 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    color: #333;
    cursor: pointer;
    display: inline-block;
    padding: 6px 6px 4px;
    margin-top: 10px;
    font: 12px;
    width: 214px;
}

.button:hover {
    background: #ddd;
}
andi

I think it's just a case error: you have id="contact-box" but href="#contact-Box".

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

How do I change the contact form margin

How do i create an overlay navigation menu?

what should I use to create a web contact form?

How do I create a form inside popup in jquery?

How do I use setInterval with my form to create an alarm clock?

how to use fragments to create an overlay effect for an add contact function when a button is pressed

How to use `do_shortcode` with Contact Form 7 and Ajax

How to use overlay dialog from jQuery for feedback form

How can I use OOP PHP in this contact form?

How do I use jQuery Post/Ajax instead of form submit?

How do I send a contact form over php with multiple select

How do I display text in bold in a simple contact form?

How do I make mail contact form in Firebase hosting?

How do I get my contact form to work with angularJS?

How do I email out ApostropheCMS contact form submissions?

how do i make the width of the label on free contact form wider?

How do I stop button from scrolling down to Contact form?

how do i align contact form 7 next to text

How to use contact form php

How to do contact form validation?

How do I use jQuery to create hovering elements?

How do I create this transparent image overlay on hover with CSS?

How do I create an opaque overlay of an area on a Pdf using itextsharp?

How do I create overlay button in my Android layout

how to create overlay shape in jquery

How do I use contact lists on New Outlook on a Mac?

How do I darken behind my overlay panel in jQuery Mobile?

how to create custom contact form in Joomla?

how to create a custom contact form on wordpress?