I have a slideshow div, and I have a datepicker field above that div.
When I click in the datepicker field, the datepicker panel show behind slideshow div.
That what solved my problem:
$( document ).ready(function() { $('#datepickerid').datepicker({ zIndexOffset: 1040 #or any number you want }); });