[jQuery] Auto update UI Tabs content
Hi!
I'm working on an application that shows few "main application tabs"
and a separate (single) news tab with UI Tabs 3. Is there a way to
auto-magically (every 15minutes or so) poll the news file
"uutiset.php" for changes and update the view in the tab when
necessary?
<div id="wrapper">
<div id="content">
<div class="tabs">
<ul>
<li><a title="Projektit" href="pages/
projektit.php"><span>Projektit</span></a></li>
<li><a title="Tiliote" href="pages/tiliote.php"><span>Tiliote</
span></a></li>
</ul>
</div><!-- tabs -->
</div><!-- content -->
<div id="news">
<div class="tabs">
<ul>
<li><a title="Uutiset" href="pages/uutiset.php"><span>Uutiset</
span></a></li>
</ul>
</div><!-- tabs -->
</div><!-- news -->
</div><!-- wrapper -->
Thanks in advance!
O