I've added chrome drop down menu to my site and thought it all went swimmingly, did just what it was supposed to do in firefox as well as internet explorer...except now I have hit a peculiar glitch lol
In Internet Explorer the product pages refuse to load, IE aborts it....it works fine *everywhere* else in all browsers except this page....and I am stumped lol soon as I removed the menu code the page loaded
This is my code here:
PHP Code:
<div id="menuBack">
<div class="chromestyle" id="chromemenu">
<ul>
<li><a style="border-left: 1px solid #DADADA;" href="http://www.havendesignz.com">Home</a></li>
<li><a href="http://www.havendesignz.com/store/" rel="dropmenu1">Shopping</a></li>
<li><a href="#" rel="dropmenu2">Community</a></li>
<li><a href="#" rel="dropmenu3">Blogs/Yahoo Groups</a></li>
<li><a href="#" rel="dropmenu4">Web Design</a></li>
<li><a href="#" rel="dropmenu5">Advertising</a></li>
<li><a href="#" rel="dropmenu6">PSP/Graphics Stuff</a></li>
<li><a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><span style="color:#0E7C9D;">My Cart:</span>
<?php echo sizeof($_SESSION['cart']->get_products()); ?> items -
<?php $header_cart = $currencies->format($_SESSION['cart']->show_total());
echo $header_cart;
?></a></li>
</ul>
</div>
<!--1st drop down menu -->
<div id="dropmenu1" class="dropmenudiv">
<a href="http://www.havendesignz.com/store/">Store Home</a>
<a href="http://www.havendesignz.com/store/contact_us">Contact Us</a>
<?php if ($_SESSION['customer_id']) { ?>
<a href="<?php echo zen_href_link(FILENAME_LOGOFF, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGOFF; ?></a>
<?php
} else {
if (STORE_STATUS == '0') {
?>
<a href="<?php echo zen_href_link(FILENAME_LOGIN, '', 'SSL'); ?>"><?php echo HEADER_TITLE_LOGIN; ?></a>
<?php } } ?>
<a href="http://www.havendesignz.com/store/specials_and_discounts">Specials/Discounts</a>
<a href="https://www.havendesignz.com/helpdesk/">Help Desk/FAQ</a>
<a href="https://www.havendesignz.com/store/account">My Account</a>
<a href="http://www.havendesignz.com/store/wishlists_manager">My Wishlist </a>
<a href="<?php echo zen_href_link(FILENAME_CHECKOUT_SHIPPING, '', 'SSL'); ?>"><?php echo HEADER_TITLE_CHECKOUT; ?></a>
<a href="<?php echo zen_href_link(FILENAME_SHOPPING_CART, '', 'NONSSL'); ?>"><?php echo HEADER_TITLE_CART_CONTENTS; ?></a>
<a href="http://groups.yahoo.com/group/hdds-newsletter/" target="_blank">Newsletter Subscribe</a>
<a href="http://www.havendesignz.com/designer_application/upload_form.php" target="_blank">Designer Application</a>
</div>
<!--2nd drop down menu -->
<div id="dropmenu2" class="dropmenudiv" style="width: 150px;">
<a href="http://www.havendesignz.com/forum/">Forum</a>
<a href="http://www.havendesignz.com/gallery/">Gallery</a>
<a href="#" onclick="javascript:window.open('http://www.havendesignz.com/chat/index.html','java','toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=740, height=600');">Live Chat</a>
<a href="http://www.havendesignz.com/guestbook/gbook.php">Guestbook</a>
</div>
<!--3rd drop down menu -->
<div id="dropmenu3" class="dropmenudiv" style="width: 150px;">
<a href="http://www.havendesignz.com/store-blog/">Store News</a>
<a href="http://www.lissaedesignz.com/" target="_blank">LissaE Designz</a>
<a href="http://tech.groups.yahoo.com/group/Scrapz_n_Stuff/" target="_blank">Scrapz N Stuff</a>
</div>
<!--4th drop down menu -->
<div id="dropmenu4" class="dropmenudiv">
<a href="http://www.havendesignz.com/portfolio.php">Portfolio</a>
<a href="http://www.havendesignz.com/web_design/upload_form.php">Request Quote</a>
</div>
<!--5th drop down menu -->
<div id="dropmenu5" class="dropmenudiv" style="width: 175px;">
<a href="http://www.havendesignz.com/topsites/">Scrapbooking Topsites</a>
<a href="https://www.havendesignz.com/affiliates/?req=newaccount&pid=1">Affiliate Program</a>
</div>
<!--6th drop down menu -->
<div id="dropmenu6" class="dropmenudiv" style="width: 150px;">
<a href="http://www.havendesignz.com/glitters.php">Glitter Tiles</a>
<a href="http://www.havendesignz.com/backgrounds.php">Background Tiles</a>
<a href="http://www.havendesignz.com/tubes.php">Tubes & Mists</a>
<a href="http://www.havendesignz.com/tutorials.php">Tutorials</a>
</div>
<script type="text/javascript">
cssdropdown.startchrome("chromemenu")
</script>
</div>
The script I used is here: http://www.dynamicdrive.com/dynamici...rome/index.htm
And Microsoft says this about aborted pages (which was what lead me to remove the menu to see if it caused it lol):
This problem occurs because a child container HTML element contains script that tries to modify the parent container element of the child container. The script tries to modify the parent container element by using either the
innerHTML method or the
appendChild method.
For example, this problem may occur if a
DIV element is a child container in a
BODY element, and a
SCRIPT block in the
DIV element tries to modify the
BODY element that is a parent container for the
DIV element.
http://support.microsoft.com/kb/927917
I really don't understand why it only does this on one page type...can anyone help? I have removed the bottom script block from the menu from the store temporarily until I can get it fixed lol