1) Script Title: Switch Menu II
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...witchmenu2.htm
3) Describe problem: how can i disable the cookies (ie tends to block them) and defalt the menus to be closed on the page load.
1) Script Title: Switch Menu II
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...witchmenu2.htm
3) Describe problem: how can i disable the cookies (ie tends to block them) and defalt the menus to be closed on the page load.
Find this line in xpmenuv21.js -
and comment it out -Code:function UpdateUserCookie(aryIndex) { date = new Date(); date.setTime(date.getTime() + (1000 * 60 * 60 * 24 * 30)); document.cookie = "xpMenuCookv2" + "=" + escape(menuObjArray[4].toString()) + "; expires=" + date.toGMTString(); }
It's not clear if you also want the menus closed or if that was a part of your description of the problem but, to have any given menu closed, use:Code:function UpdateUserCookie(aryIndex) { date = new Date(); date.setTime(date.getTime() + (1000 * 60 * 60 * 24 * 30)); // document.cookie = "xpMenuCookv2" + "=" + escape(menuObjArray[4].toString()) + "; expires=" + date.toGMTString(); }
HTML Code:<div class="subMenu" style="display:none;">
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
ie still blocks the content, even with that line commented...
Edit: is there anyway to stop i.e from blocking the menu?
Last edited by _tech_dude_; 09-30-2006 at 12:19 PM.
What do you mean by blocks the content or blocks the menu? Anyways, I should have added to my previous post that any existing cookie will still control the display of the page. Also, that if the script is cached, it will still set the cookie. So, you need to clear both your cache and your cookies.
One other thought, if by blocking the menu you mean the security bar, that is a local only 'feature' of IE that is activated by any javascript. Does this happen on the demo page that's live here on Dynamic Drive? If not, it will not happen with your code either once the page is live.
- John________________________
Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate
Bookmarks