[jQuery] $.get content refresh

[jQuery] $.get content refresh


<p class="MsoNormal"><span style="" lang="EN-US">Hi,
i'm working
on a song-ticker for a non-commercial radio station. Now the following code is
supposed to call a script which reads the current song out of a database and
displays it:</span>
<p class="MsoNormal"><span style="" lang="EN-US"><script
language="javascript"></span>
<p class="MsoNormal"><span style="" lang="EN-US"><span style="">                </span>function get_tracklist(){</span>
<p class="MsoNormal"><span style="" lang="EN-US"><span style="">                               </span>$.get("<a href="http://www.toxic.fm/fileadmin/scripts/tracklist_player.php">http://www.toxic.fm/fileadmin/scripts/tracklist_player.php
</a>",function(data){</span>
<p class="MsoNormal"><span style="" lang="EN-US"><span style="">                                               </span>jQuery('#tracklist').html(data);</span>
<p class="MsoNormal"><span style="" lang="EN-US"><span style="">                               </span>});</span>
<p class="MsoNormal"><span style="" lang="EN-US"><span style="">                </span>} </span>
<p class="MsoNormal"><span style="" lang="EN-US"><span style="">                </span></span>
<p class="MsoNormal"><span style="" lang="EN-US"><span style="">                </span>$(document).ready(function(){</span>
<p class="MsoNormal"><span style="" lang="EN-US"><span style="">                               </span>setInterval("get_tracklist()",5000);</span>
<p class="MsoNormal"><span style="" lang="EN-US"><span style="">                </span>});</span>
<p class="MsoNormal"><span style="" lang="EN-US"></script></span>
<p class="MsoNormal"><span style="" lang="EN-US">(…)</span>
<p class="MsoNormal"><span style="" lang="EN-US"><div
id="tracklist"></div></span>
<p class="MsoNormal"><span style="" lang="EN-US">Now in
Firefox everything works fine. The current track is shown correctly and refreshes
every 5 seconds. In IE7 though, the content displays a first time and then
stays the same. Even when I refresh the window, the content stays the same. I
know that the function gets called, but the content does not change.</span>
<p class="MsoNormal"><span style="" lang="EN-US">Have you
any idea what's happening here?</span>
<p class="MsoNormal"><span style="" lang="EN-US">Help is
very much appreciated.
Best wishes</span>
<p class="MsoNormal"><span style="" lang="EN-US">Nicolas</span>