Hi I m facing a problem while passing the request URL.
var uName=document.getElementById("username").value
var password=document.getElementById("password").value
var checkPass="doLoginAction.do?button=password&userna me="+uName+"&password="+password
if (req && password.length<12 ) {
req.onreadystatechange = populateCircle;
req.open("GET", checkPass, true);
req.send();
}
This code is working fine., my problem is.. if the password is like '+testing'..I m not getting a proper response object..

For the remaining passwords its working fine..
Please help me to find a solution for this :)