[jQuery] blur event doesn't work with DOM element dynamically added

[jQuery] blur event doesn't work with DOM element dynamically added


Hi,
I have a form I'm working with where the user can drag and drop
elements onto the form to populate fields. In one instance I create a
new input text box if a specific item is dragged and dropped onto the
form. I have a 'blur' event for all objects with a specific CSS
class and this newly created element has that class. But the 'blur'
event isn't getting called for these new input fields. The 'blur'
event works for any text field that is assigned the class, just not
for these dynamically created elements.
Any ideas how I can get these new elements to execute the 'blur' event
function just the same as the non-dynamic fields?
Thanks...