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.

How do I execute an JavaScript function right when an ASP.NET text box control is populated and focus is still set? The onChange event will not work because I need to programmatically move focus to the next form element after the JavaScript function has executed.

Is is very similar to this question. The marked answer is correct for the context on the question, but after some more testing it did not exactly solve my current issue.

Pseudo code:

<script language="javascript" type="text/javascript">
    function MyFunction() {
        //execute this function when MyTxtBox is populated and focus is still set
        //once core function is completed, move focus to MyTxtBox1
    }
</script>
<style type="text/css">
    .USBBox
     {
         position: absolute;
         left: -999em; 
         overflow: hidden;
     } 
</style>   
<asp:TextBox id="MyTxtBox" runat="server" CssClass="USBBox" />
<asp:TextBox id="MyTxtBox1" runat="server" /> 
share|improve this question
Could you explain how the linked question does not meet your requirements? Technically, however this is a duplicate! – James Wiseman Jan 5 '10 at 17:20
@James - The user is using an USB credit card swiper and I had to press the tab key to move to the next form element in order to execute the JS function. I need to eliminate the tab press. – Michael Kniskern Jan 5 '10 at 17:25

2 Answers

up vote 1 down vote accepted
$('#MyTxtBox').keyup(MyFunction);
share|improve this answer

You need to use onkeypress or onkeyup to accomplish this.

share|improve this answer

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.