Hi have a JQuery modal popup that I load HTML into. I have the following code in my scrpt file:
//date code - move to reusable.
$('.dateDavy').datepicker({
showOn: 'button',
buttonImage: '/Content/images/Control_MonthCalendar.bmp',
buttonText: 'Enter Date',
buttonImageOnly: true,
dateFormat: 'dd/mm/yy',
yearRange: '-115:+3',
changeMonth: true,
changeYear: true
});
The problem is that when I click the image for the calendar it pops up behind my modal form.
Any help appreciated