Hello!
Please help me, I have tried to find an explanation to this problem for half of my working day.
When I update div-tag with new content by using jquery the JavaScript functionality disappears in the updated content? How do I resolve this in the simplest way?
function liveFeed(){
var country = $('#country').val();
//var time = new Date().getTime()
$('.post').load('/includes/public/livefeed.php?country=' + country);
}
window.setInterval(liveFeed, 10000);