Je code is erg vreemd. Ik neem aan dat uw probleem afkomstig is van uw Javascript/jQuery.
Uw code gebruikt geen callback-functie die ik kan zien, dus ik zou uw code wijzigen om te updaten nadat de XMLHTTPRequest is voltooid:
$( "#mytable tr td:first-child" ).click(function() {
//I'm not sure where you are getting str from, but get it before you call this:
$.get("getUser.php", {q:str}, function(data){
//data holds what getUser.php echoes
$("#yourTable").replaceWith(data);
});
});