Jump to content

On content change.


jbonnett

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.