jbonnett Posted August 12, 2013 Share Posted August 12, 2013 I'm trying to get content from a .php (that is ready to be put into a div no variables need to be passed) and refresh the div if the content from the .php file changes (like a new product or status is added to the database) and append the new result to the div. Here's a method that I tried but failed: <div id='feeds'></div> <div id='new' style="display: none;"></div> <script type="text/javascript"> $(document).ready(function() { $.ajaxSetup({ cache: false }); setInterval(function() { $('#new').load('ajax/feed.php?javascript=true'); if( $('#new').contents() != $('#feeds').contents() ) { $("#new").clone(true, true).contents().appendTo('#feeds'); } }, 5000); }); </script> Please help, Jamie Link to comment https://forums.phpfreaks.com/topic/281059-on-content-change/ Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.