Announcement

Collapse
No announcement yet.

Jumping between pages

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Jumping between pages

    This is my first post and my first problem thats really bugging me, if anyone can help???
    On the site I have a link to a section from the home page, when it is clicked the section page loads up but then it jumps backwards to the catalog page before it and then bounces back again, this makes the page load times longer than neccessary and its quite annoying, any ideas as to how to stop this happening?

    The site is www.ezpcshop.com and its the current offers link that does the above.

    #2
    You have some JavaScript in your Act_Primary.html that seems to be causing this.
    <SCRIPT LANGUAGE="Javascript">
    var actinic_ignored = true;
    </SCRIPT><Actinic:IGNORE><SCRIPT LANGUAGE="Javascript">
    actinic_ignored = false;
    </SCRIPT></Actinic:IGNORE><SCRIPT LANGUAGE="JavaScript">
    <!--
    function onLoad()
    {
    if (window.name!='CatalogBody' && actinic_ignored != true && !((self.innerHeight == 0) && (self.innerWidth == 0)))
    parent.location.replace('index.html?' + escape(document.location.href) + '&CatalogBody');
    }
    // -->
    </SCRIPT>
    The onload() function has been added to your BODY statement and will be called on every page load.

    You are using a Framed theme and this JavaScript is related to it. As I never use frames I can't comment further.

    You might want to search the Forum for some comments on whether Frames are a good or terrible (my opinion) idea.

    Norman
    Norman - www.drillpine.biz
    Edinburgh, U K / Bitez, Turkey

    Comment


      #3
      Thanks for the reply,
      I know frames are really not a good idea, but being a relative newby to actinic I`m working my way through advanced user guide and at some point I hope to go without frames, but its the redesign of a lot of the graphics that is a bit daunting!
      But thanks for confirming about the frames not being a good idea. I now know what needs doing!
      cheers

      Comment

      Working...
      X