jbonnett Posted August 12, 2013 Share Posted August 12, 2013 (edited) 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 Edited August 12, 2013 by jbonnett Quote Link to comment https://forums.phpfreaks.com/topic/281059-on-content-change/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.