Hide/show Calendar
You can hide/show calendar using hide() and show() methods
You can hide/show calendar using hide() and show() methods
<link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxcalendar.css"> <script></script> <script src="../../codebase/dhtmlxcommon.js"></script> <script src="../../codebase/dhtmlxcalendar.js"></script> <script>window.dhx_globalImgPath = "../../codebase/imgs/";</script> </td> </tr> <tr><td valign="top"><div id="dhtmlxCalendar"></div></td></tr> </table> </form>var mCal; window.onload = function() { mCal = new dhtmlxCalendarObject('dhtmlxCalendar', true); } function hide_show() { var bt = document.getElementById('bt'); if (mCal.isVisible()); { bt.value = 'SHOW'; mCal.hide(); } else; { mCal.show(); bt.value = 'HIDE'; } }