Element
<span class="bar">xxx</span>
contain value and it's updated by Ajax.
I have successfully get this xxx data to variable via JQuery with this script
var foo = $('.bar').html();
$("#other").append("<strong>" + foo + "</strong>");
// alert(foo) <- for testing
to append it to #other place in page, and it's works fine but... How to get live data (updated by Ajax) from this .bar element?