Results 1 to 3 of 3

Thread: Dynamic Ajx Content - Nested Ajax Calls - FF Error

  1. #1
    Join Date
    Dec 2007
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Dynamic Ajx Content - Nested Ajax Calls - FF Error

    1) Script Title:
    Dynamic Ajax Content

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

    3) Describe problem:
    I have implemented this script successfully - works great! However, I have nested ajax links from pages already called by this script. This too works perfectly - in IE. However, in FF these nested calls do not work - all FF versions for Windows. The following error comes up on the FF Error Console:

    Error: document.getElementById(containerid) has no properties
    Source File: http://www.chairbiz.com/js/layout.js
    Line: 36

    This error only occurs when the 'Finishes' link is clicked, the Finish Options are displayed, and a specific finish option (such as Upholstery) is chosen. The requested page does not load.

    You can check out the page here:

    http://www.chairbiz.com/product_page2007.cfm?id=815

    Thanks for your time in this matter.

    Marcusg

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    For the "Upholstery" link, I noticed the URL you're using inside it is:

    Code:
    javascript:ajaxpage('product_page_upholstery2007.cfm?id=815', 'productcontent')
    This should be:

    Code:
    javascript:ajaxpage('product_page_upholstery2007.cfm?id=815', 'productContent')
    Notice the case sensitivity here.

  3. #3
    Join Date
    Dec 2007
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default

    ddadmin,

    Thanks so much. I can't believe I missed this!! This is what happens in a team environment and I have a couple of days off (lol)! Thanks again!

    Marcusg

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
  •