I' have a simple popup login, which returns status into div(if pass is not correct) or redirect to the main page.
Here is code for handling request:
$.ajax({
type: "POST",
url: "login.html",
cache: false,
data: formData
success: function(data){
var $response=$(data);
$('#response').text($response.find('#response').text());
if($('#response').text().length<=0)
{
window.location="main.html";
}
}
});
I'm using spring MVC for handling request. Login.html returns String(pass not correct). But when I get redirect from Spring nothing happens. So I temporary added client code for redirect.
Is this approach correct? Cause I get success on both ways(wrong or correct password)