Skip to content

Instantly share code, notes, and snippets.

@IamNaN
Created April 14, 2015 04:32
Show Gist options
  • Save IamNaN/e6cd2e9611c19f7933fc to your computer and use it in GitHub Desktop.
Save IamNaN/e6cd2e9611c19f7933fc to your computer and use it in GitHub Desktop.
Hack to get bootstrap datetimepicker to accept US formatted date/time
$('form').submit (event) ->
$(this).find('.datetime').each ->
$(this).val moment(new Date($(this).val()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment