A color picker input (type = color) will be rendered as a textbox in firefox as it has no native support, on Chrome however the browser will render a much nicer native control. However using jQuery to bind to the blur event will work in firefox but not in chrome.
Is this not (yet) implemented or should I use a different event?
Here is a jsFiddle with the code in question (works in FF not in chrome) http://jsfiddle.net/Rgu6h/13/
I just found the problem, what I want to know is if the value is changed, so I can just bind to the change event instead of the click/blur/mouseup or whatever event. Sometimes the solution is just too obvious.