I have a question regarding the onBlur DOM event. I was wondering if I set an onBlur event handler on a div. Does it fire if I focus on a child element inside of that div. I want to submit an ajax request to an MVC controller when a div containing all the necessary input elements handles the onBlur event.
Also this would be saving a list of entities related to the main model (in a partial view) which may either be an edit or a create. I would test this out myself, but I still need to set up the controller action and move my markup to a partial view.