Memory leak using JQueryUI-1.10.3 in IE 8
Hello Experts,
i have developed a web page which is loaded/displayed into a webbrowser control. i observed huge memory leaking in my application. after digging i identified memory leak is due to the usage of JqueryUI . to find out the root cause i modified my page to a very simple page like below.
<!DOCTYPE html>
<html>
<head>
<title>Sample test page</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="x-ua-compatible" content="IE=8">
<script type="text/javascript" src="myscript/jquery-1.9.1.js"></script>
<script type="text/javascript" src="myscript/jquery-ui-1.10.3.js"></script>
</head>
<body style="overflow: hidden;">
<h1> test </h1>
</body></html>
i am not loading any UI control in page. i just added the script tag to page. every time page is loaded there is about 2-3 MB memory leak. i used sIEve.exe tool to identify the memory leak.
i am unsure of the script code that needs to be written in the unload page event to resolve this memory leak issue.
Appreciate your help.
Thanks.