Consider the following code. If I click in cmbMonkeys, it causes an infinite loop of alert messages in Google Chrome. My workaround for cmbPeople works fine. Does anyone
With a simple state-handler, maybe?
var isFocus = false; function cmbPeople_CallFocusHandler(control) { if(!focus){ focus = true; cmbPeople_OnFocusHandler(); } } function cmbPeople_CallBlurHandler(){ isFocus = false; }