Friday, May 17, 2024
 Popular · Latest · Hot · Upcoming
93
rated 0 times [  98] [ 5]  / answers: 1 / hits: 61547  / 12 Years ago, thu, august 23, 2012, 12:00:00

I have a div on a page that shows some info about a particular category (Image, Name etc).



When I click on the edit image it puts the category into edit mode which allows me to update the name. As you can see from the image below it shows that Soup is currently in edit mode, the others are in normal view mode. This all works as expected with the cancel / save buttons doing everything right. (I tried adding an image but wouldn't let me, need more love)



However once in edit mode if I click anywhere else on the page (Outside of the div) the expected result would be that the soup category would go back to view mode. Upon an event firing of some sort, this should also allow me to ask if they wanted to save changes.



So what I then decided to do is create an blur event on the soups parent div. This works as expected if I click anywhere on the page, however if I click on the inner element of the div it also causes the parents blur event to be fired, thus causing the category to go back to view mode.



So, is there a way to prevent the parent div from firing the blur event if any one of its children receive focus?



<div tabindex=-1 onblur=alert('outer')>
<input type=text value=Soup />
</div>


I just wrote the code without a compiler so not sure if that even works but with that hopefully you get the idea.



I'm using Knockout.js to update the GUI on the fly but that shouldn't effect this answer I wouldn't have thought.


More From » jquery

 Answers
33

I've had to tackle this problem before. I am not sure if it is the best solution, but it is what I ended up using.



Since the click event fires after the blur, there is no (cross-browser, reliable) way to tell what element is gaining focus.



Mousedown, however, fires before blur. This means that you can set some flag in the mousedown of your children elements, and interrogate that flag in the blur of your parent.



Working example: http://jsfiddle.net/L5Cts/



Note that you will also have to handle keydown (and check for tab/shift-tab) if you want to also catch blurs caused by the keyboard.


[#83465] Wednesday, August 22, 2012, 12 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
emileef

Total Points: 724
Total Questions: 108
Total Answers: 102

Location: Romania
Member since Sun, Dec 20, 2020
3 Years ago
;