Using the new input=\"color\" element within Chrome triggers a new popup dialog:
What you are looking for is the input event.
Your modified fiddle should now work in all (decent) browsers:
$('#colorinput').on('input', function() { ... } )