This is my function to call ajax partial page refresh with jquery on every 30 seconds:
setInterval(function() {
$.ajax({url: "url.txt", success: function(result){
$("#containerDiv").html(result);
}}}, 30000);
But I can't find the right file to place it. Where is exactly the *.php file that contains the table with the woocommerce orders in admin panel located?