i use, onkeyup="timer(this)" on a text input field, but no request is sent/received from the server.
Code: Select all
function timer(obj) {
window.setTimeout("sendReq("+obj.value+", "+obj.id+", "+obj.id+"_valid)", 500);
}
Code: Select all
function sendReq(str, objId, responseId)