Jump to content

Login script can't 'reach' CSS selectors?


MaryJane

Recommended Posts

Can someone tell me why this isn't working? :confused:
It's like it can't find the id's 'loginLock' and 'loginUnlock'... Please help me


HTML
<html>
    <head>
        <meta charset="UTF-8">
        <link href="CSS/stylesheet.css" rel="stylesheet" type="text/css"/>
        <title>My Vault</title>
    </head>
    <body>
        <div id="container">
            <div id="loginBox">
                <img id="loginLock" class="loginLocks" src="images/login/lock.png">
                <img id="loginUnlock" class="loginLocks" src="images/login/unlock.png">
                <form id="loginForm">
                    <input class="formText" type="text" name="username" placeholder="Indtast brugernavn.."><br>
                    <input class="formText" type="password" name="password" placeholder="Indtast adgangskode.."><br>
                    <input id="formLoginButton" type="button" value="Login!" onclick="validate(this.form)">
                </form>
                
            </div>
        </div>
        <script src="JS/core.js" type="text/javascript"></script>
        <script src="JS/login.js" type="text/javascript"></script>
    </body>
</html>



JS
$(document).ready(function() {
    function validate(form) {
        if (form.username.value==="Mary Jane") {
            if (form.password.value==="knife") {
                $('#loginLock').css({opacity: 0});
                $('#loginUnock').css({opacity: 1});
            }else {
            alert("Forkert brugernavn eller password");
            }
        } else {
        alert("Forkert brugernavn eller password");
        }
    }
});



CSS

#loginLock{

    opacity: 1;

}

#loginUnlock{

    opacity: 0;

}

 

 

 

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.