Skip to content

Instantly share code, notes, and snippets.

@PrestaEdit
Created January 21, 2015 09:28
Show Gist options
  • Save PrestaEdit/5b896381c9de168c7f30 to your computer and use it in GitHub Desktop.
Save PrestaEdit/5b896381c9de168c7f30 to your computer and use it in GitHub Desktop.
Datepicket: z-index
$(".datepicker").datepicker({
prevText: '',
nextText: '',
dateFormat: 'yy-mm-dd',
beforeShow: function() {
setTimeout(function(){
$('.ui-datepicker').css('z-index', 99999999999999);
}, 0);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment