Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a form like this:

<form id="form1" method="post" action="">
<input maxlength="75" size="90" type="text" id="textfield2"/>
</form>

How to show an alert box message when i finish typing? Thanks


edit

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="jquery.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript">
$(document).ready(function() {
var course_data;      
 $.get('math.xml', function(data) { 
    course_data = data;   
    var that = $('#courses');
    $('course', course_data).each(function() { 
        $('<option>').text($(this).attr('title')).appendTo(that);
    });
}, 'xml'); 
$('#courses').change(function() { 
    var val = $(this).val(); 
    var that = $('#times').empty(); 
    $('course', course_data).filter(function() { 
        return val == $(this).attr('title'); 
    })
    .find("lesson").each(function() { 
        $("#lesson").val($(this).text()); 

    });
});
});
</script>
<script type="text/javascript">
function keyPressed(event, input) {
if (event.keyCode == 8) {

    return true;
}

var char = event.which ? event.which : event.keyCode;

char = String.fromCharCode(char);
 var exerc = ["aaaa aaaa aaaa aaaa","bbbb bbbb bbbb bbbb"];
 for (i=0;i<exerc.length;i++){

 var option=document.getElementById("courses").selectedIndex;
 }

return (exerc[option - 1].charAt(input.value.length) == char);
}
</script>
</head>
<body>
<form name="form1" method="post" action="">
<input type="text" maxlength="70" size="90" id="lesson"/>
</form>
<form name="form2" method="post" action="">
<input maxlength="59" size="90" type="text" onkeypress="return keyPressed(event, this);"/>
</form>

<form name="form1">drop1
<select style="width:100px" id='courses'>
<option selected="selected">choose...</option>
</select>
</form> 
</body>
</html>

xml:

<courses>
<course title="chap 1">
<lesson>aaaa aaaa aaaa aaaa</lesson>
</course>
<course title="chap 2">
<lesson>bbbb bbbb bbbb bbbb</lesson>
</course>
</courses>   

I have two input fields and i use a keypress function to enter only specific chars in the second input. I can enter until the chars from the first field finished. So, when i finished typing i want to appear an alert message like:

alert(ok finish!); 

it is possible?

share|improve this question
4  
How do you define "finished typing?" – JaredPar Mar 7 '12 at 23:45
well, I have two input fields and i use a keypress function to enter only specific chars in the second input. I can enter until the chars from the first field finished. – 1071164 Mar 8 '12 at 0:53

1 Answer

With JQuery you could do this:

$('#textfield2').bind('blur',function() {
   alert('I guess i finished typing cause I left the field!?');
});
share|improve this answer
this is work but not correct. Ιt should I make a click in screen in order to I see the message. I want to presented immediately when I finish the writing. Any suggestion? – 1071164 Mar 8 '12 at 0:58
can you please specify this? then i would be glad to help you – androidavid Mar 8 '12 at 1:15
i correct the code above. tell me if you don't understand what i mean – 1071164 Mar 8 '12 at 2:07
sorry but i dont get it. i understand your code - in fact technically - but im really not going behind what you're tryin to do although i guess that it's not hard to do if you make yourself more clear – androidavid Mar 8 '12 at 2:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.