Results 1 to 5 of 5

Thread: how to fix memory problem in internet explorer 6,7,8,9,10.

  1. #1
    Join Date
    Dec 2011
    Posts
    42

    how to fix memory problem in internet explorer 6,7,8,9,10.

    i am recently on windows 7 after switching it from xp and using default browser internet explorer 10 currently. however is there any means by which i can solve the memory issue which is occurring now. also the same at the time of using xp. and i want to increase the level to 1 G. in addition to this is there any means to develop html5 apps in win8. please suggest some guidelines.
    <html>
    <head >

    <title>memory </title>

    <script type="text/javascript">
    function Test() {
    var testObj = {};

    for (var i = 0; i < 100000; i++) {
    var seed = Math.random().toString();
    testObj[seed] = "Please See the Memory";
    }
    }
    </script>

    </head >
    <body onload="setInterval(Test, 100)">
    </body>
    </html>

  2. #2
    Join Date
    Nov 2010
    Posts
    397

    Re: how to fix memory problem in internet explorer 6,7,8,9,10.

    i can see through the code and as you set the variable to i, there is a need to call the memory object and so you need to insert the function {testMemObj[i] = seed;} in our code. i think this will recollect the memory and then display it.

  3. #3
    Join Date
    Mar 2011
    Posts
    480

    Re: how to fix memory problem in internet explorer 6,7,8,9,10.

    hi guy, it seems that you have a good knowledge of html tags, but in addition i can state that seed is used for random attribute.

  4. #4
    Join Date
    Mar 2011
    Posts
    427

    Re: how to fix memory problem in internet explorer 6,7,8,9,10.

    i have similar problem in the case. the below mentioned is the coding and there is no freeing of memory possible in IE10 in windows 8, 9, 8, 7 and 6. the following is the mentioned code.
    <html>
    <head>
    <title></title>

    <script type="text/javascript">
    var memTree = [];

    function TestOne() {
    for (var i = 0; i < 500; i++) {
    memTree[i] = {};
    for (var j = 0; j < 500; j++) {
    var seed = Math.random().toString();
    memTree[i][seed] = true;
    }

    memTree[i] = null;

    }

    memTree = [];
    }
    </script>
    </head>
    <body onload="setInterval(TestOne, 1000)">
    </body>
    </html>

  5. #5
    Join Date
    May 2011
    Posts
    335

    Re: how to fix memory problem in internet explorer 6,7,8,9,10.

    according to my knowledge, there are performance improvements across the HTML parser, CSS engine, mark-up tree manipulation which internet explorer provides. in addition to this , the JScript runtime and the associated garbage collector are also part of providing effective performance. and i think the corrections are made as there were many Memory leaks due to inconsistent handling of circular references between JScript objects and DOM objects . there is a separate running of tabs and browser frame as internet explorer make s use of Loosely Coupled Internet Explorer (LCIE) architecture.

Similar Threads

  1. Getting out of Memory at Line 8 message on internet explorer
    By Adam Ant in forum Technology & Internet
    Replies: 4
    Last Post: 15-01-2012, 08:09 AM
  2. help, out of memory at line 17 error in internet explorer
    By snikers200 in forum Technology & Internet
    Replies: 1
    Last Post: 12-09-2011, 05:14 PM
  3. Internet Explorer problem after upgrade to Explorer version 8
    By sdain31y in forum Windows XP Support
    Replies: 7
    Last Post: 17-04-2009, 07:28 PM
  4. Why Internet Explorer takes a lot of memory ?
    By Abrianna in forum Windows Software
    Replies: 3
    Last Post: 18-03-2009, 09:48 PM

Tags for this Thread

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
  •  
Page generated in 1,713,899,595.70792 seconds with 17 queries