Is there an alternative to innerHTML? - issue on Blackberry browser
Blackberry 4.6 browser does not seem to use innerHTML properly. Instead of replacing contents, it appends contents!
function load_activities(){
x$('#dummy').xhr('program.php',{
method:'post',
data: 'action=list'.
callback: function(){
document.getElementById("status2").innerHTML = this.responseText;
}
});