so i have an html page call index.html, it looks like:
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<title>sometitle</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="Screen">
<section class="loginform cf">
<form action="#" method="post" id="loginwindow">
<ul>
<li>
<label for="usermail">Email</label>
<input type="email" name="useremail" placeholder="youremail@email.com" required>
</li>
<li>
<label for"password">Password</label>
<input type="password" name="password" placeholder="password" required>
</li>
<li>
<input type="submit" value="Check In">
</li>
</ul>
</form>
</section>
<script src="js/index.js"></script>
</div>
</body>
</html>
and it has a js file named index.js that looks like this:
window.onload = function () {
var loginForm = document.getElementById('loginwindow');
if ( loginwindow ) {
loginwindow.onsubmit = function () {
var useremail = document.getElementById('useremail');
var password = document.getElementById('password');
// Make sure javascript found the nodes:
if (!useremail || !password ) {
load("LoopIt_DashBoard.html");
return "success";
}
}
}
}
function load(url)
{
$("#Screen").load(url, function(response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error: ";
$("#error").html(msg + xhr.status + " " + xhr.statusText);
}
});
test();
}
function test()
{
alert("test");
}
function test(string)
{
alert(string);
}
and a second html file called LoopIt_DashBoard.html that looks like this:
<div id="Screen">
<section class="loginform cf">
<form action="#" method="post" id="loginwindow">
<ul>
<li>
<input type="submit" value="Check In">
</li>
</ul>
</form>
</section>
</div>
now what this code does is get a email and a password and it compares the two. if they are equal then it changes the html in the div with the id Screen with the code in the LoopIt_DashBoard.html file. however if I take out the line which simply calls an alert (I use it for testing)
test();
from
function load(url)
{
$("#Screen").load(url, function(response, status, xhr) {
if (status == "error") {
var msg = "Sorry but there was an error: ";
$("#error").html(msg + xhr.status + " " + xhr.statusText);
}
});
test();
}
then this function doesn't work, the page doesn't change. how do I get my view to update without using the alert.