enables iframe background for calendar
mode | boolean | enable/disable |
function is_my_page_have_selects() {
// your code here
...
return true; // or false
}
if (navigator.userAgent.indexOf("MSIE 6.0") >= 0 && is_my_page_have_selects()) {
myCalendar.enableIframe(true);
}
Old versions of IE have issue with rendering DIV over SELECT, last one always on top. This can be fixed by putting IFRAME under DIV
Back to top