Results 1 to 3 of 3

Thread: Problem in IE with New dropdown menu HELP!!!

  1. #1
    Join Date
    Mar 2008
    Posts
    46
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default Problem in IE with New dropdown menu HELP!!!

    1) Script Title: AnyLink CSS Menu v2.0

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...anylinkcss.htm

    3) Describe problem:
    Dropdown is not allowing the page to display on a PC in internet explorer.
    Here is the Link that will not display on a PC:
    http://contentx.com/vsg/
    Works fine in firefox

    Also, I cannot get the old version to work either:
    http://contentx.com/vsg/test.html
    (first tab in menu bar)

    Thanks!
    zack
    Last edited by zeech26; 02-06-2009 at 05:26 PM. Reason: resolved

  2. #2
    Join Date
    Sep 2005
    Location
    India
    Posts
    1,627
    Thanks
    6
    Thanked 107 Times in 107 Posts

    Default

    1. The HTML of yours has certain <li> elements used without a parent <ul> element.

    2. Try changing the following part of your code

    Code:
    <script type="text/javascript">
    
    //anylinkcssmenu.init("menu_anchors_class") //call this function at the very *end* of the document!
    anylinkcssmenu.init("anchorclass")
    </script>
    to

    Code:
    <script type="text/javascript">
    window.onload = function(){
    	anylinkcssmenu.init("anchorclass");
    }
    </script>
    *Note that if there are any other code that fires on the 'onload' event of either the window or body element, try place it inside the function mentioned above to avoid issues.

    I think with this change itself IE will start render the page without showing the error.

    3. The issue you've been experiencing is a famous one and well documented. You'll be able to understand more details about it from the below mentioned links:

    http://support.microsoft.com/default.aspx/kb/927917
    http://www.nczonline.net/blog/2008/0...aborted-error/

    Hope this helps

  3. The Following User Says Thank You to codeexploiter For This Useful Post:

    zeech26 (02-06-2009)

  4. #3
    Join Date
    Mar 2008
    Posts
    46
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default

    Thank you!
    That worked great
    zack

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •