This snippet shows you how to change date format for better exposed filters in Drupal 7. I was not able to use strtotime with the default setting.
Source code viewer
/**
* Implements hook_js_alter().
*/
function HOOK_js_alter(&$js) {
);
}Programming Language: PHP