views:

405

answers:

1

Below is a jQuery Timepicker plugin which i am using in my project.

http://labs.perifer.se/timedatepicker/
http://labs.perifer.se/timedatepicker/jquery.timePicker.js

Working fine in other browsers but in Google chrome - once you click on the scrollbar and then click outside, the timepicker will not disappear. This is because chrome is firing the blur event , when we click on the scrollbar whereas other browsers not firing when click on scrollbar. Can anyone suggest a fix.. Thanx in anticipation.

A: 

Well nobody here replied..
I found a solution.
I have removed the blur event and instead used this...
http://stackoverflow.com/questions/152975/how-to-detect-a-click-outside-an-element
it is working fine now..

Varun