I have a select box using the jQuery dropdownchecklist plugin. I want the fire of the change event to occur only after the selection field loses focus.
The jquery.change event is fired to select blocks immediately after selecting an item in the list. In my case, since several elements can be selected, I want the changes to light up after the focus is lost, provided that the new elements have even been selected.
I thought I could make some kind of chain like $ ('# MySelect'). change (). blur (...) or some kind of nesting or something like that, but I could not get it to work as I would expect.
Any ideas?
source share