PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Script Error and Total Not Showing in IE 8

  1. I've created 10 complex forms using Conditional Logic and Pricing fields.

    Everything has seemed to go fine until recently, I keep getting a pop-up Script Error in IE 8 and when the client finalizes and is ready to check out, the Sub Total says $0 in IE 8 (it's fine in Firefox).

    It's also seeming to take quite a while to load.

    Here's one of the forms:

    http://monetizemyhobby.com/dance-america-nationals-2011/register-solo-duo-trio-2011/

    Thanks!

    Posted 13 years ago on Wednesday March 9, 2011 | Permalink
  2. Please help as I need to have this fixed soon - thanks!

    Posted 13 years ago on Wednesday March 9, 2011 | Permalink
  3. Can you send an WP admin login to us via our contact form? Add "ATTN: David" to the beginning of your message.

    Posted 13 years ago on Wednesday March 9, 2011 | Permalink
  4. Just sent via Contact Form. Thanks for your help. I hope to get this fixed today.

    Posted 13 years ago on Wednesday March 9, 2011 | Permalink
  5. Found this too:

    Put Scripts at the Bottom
    tag: javascript

    The problem caused by scripts is that they block parallel downloads. The HTTP/1.1 specification suggests that browsers download no more than two components in parallel per hostname. If you serve your images from multiple hostnames, you can get more than two downloads to occur in parallel. While a script is downloading, however, the browser won't start any other downloads, even on different hostnames.

    In some situations it's not easy to move scripts to the bottom. If, for example, the script uses document.write to insert part of the page's content, it can't be moved lower in the page. There might also be scoping issues. In many cases, there are ways to workaround these situations.

    An alternative suggestion that often comes up is to use deferred scripts. The DEFER attribute indicates that the script does not contain document.write, and is a clue to browsers that they can continue rendering. Unfortunately, Firefox doesn't support the DEFER attribute. In Internet Explorer, the script may be deferred, but not as much as desired. If a script can be deferred, it can also be moved to the bottom of the page. That will make your web pages load faster.

    from: developer.yahoo.com

    Not sure this is helpful or not...

    Posted 13 years ago on Wednesday March 9, 2011 | Permalink