Using jQuery, I need to sound an recurring alert beep. This works, however each time that I GET the <object> it adds another DOM node for the DIV that it is included into, creating memory grow at the browser. I am using sIEve 0.0.8 and IE8 to inspect the DOM nodes used.
I tried several replaceChild and jQuery's .remove functions but without succes. Obviously I'm doing something wrong, so help is very much appreciated. How can I prevent the addition of the DIV, or delete it afterwards?
Here is my code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Expires" content="Tue, 03 Jul 2001 06:00:00 GMT" />
<meta http-equiv="Cache-Control" content="no-store, no-cache, must-revalidate, max-age=0, post-check=0, pre-check=0" />
<meta http-equiv="Pragma" content="no-cache" />
<title>display refresh</title>
<script language="javascript" src="jquery-1.5.min.js"></script>
<script language="javascript" src="jquery.timers-1.2.0.js"></script>
<script language="javascript">
var screen_refresh = 3000; // 3000 msec refresh rate
$(document).ready(function(){
var j = jQuery.noConflict();
j(document).ready(function() {
//var datastring; // hold php variables array
j('.snddiv').everyTime(screen_refresh,function(){
j.get('overhead_sound_object.php', function(data){
j('.snddiv').html(data);
});
});
});
});
</script>
</head>
<body>
Connection established.
<div class="snddiv"></div>
</body>
</html>
and the overhead_sound_object.php:
<OBJECT id="MYaudio" width="1" height="1" CLASSID="CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6" type="application/x-oleobject">
<PARAM NAME="URL" VALUE="beeps.wav">
<PARAM NAME="SendPlayStateChangeEvents" VALUE="False">
<PARAM NAME="AutoStart" VALUE="True">
<PARAM name="uiMode" value="none">
<PARAM name="PlayCount" value="0">
</OBJECT>
j('#MYaudio').remove();ahead of thej('.snddiv').html(data);in your get function? – Lazarus Feb 3 '11 at 13:14j('#MYaudio').remove(); j.get('overhead_sound_object.php', function(data){ j('.snddiv').html(data); });still gives the same two extra DOM nodes. – Hans Feb 3 '11 at 16:38