tags:

views:

43

answers:

3

What two things need to happen for a text box's change event to fire?

A: 
  1. Textbox gets focus
  2. User types in textbox...
Tony
A: 

If you are talking about the onchange event on an HTML text or textarea element, it's after the value in a textbox has changed and the focus changes away from that element.

Chris Williams
A: 

@Chris-You are on the right track. Actually its when The cursor gets moved into the control and When control gains focus.

Kan