By utilizing jQuery, you have the power to tackle this issue.
Upon loading the page, it is possible to determine the starting point of the table and then place the button accordingly to the left of said table.
Here's a quick demonstration:
$(function(){
// Obtain the left position of the table
var leftPosition = $("table").offset().left;
// Fetch the top position of the table
var topPosition= $("table").offset().top;
// Calculate the desired left position for the button considering its width and additional spacing
var leftButtonPosition = leftPosition - $("myButton).width() + 5;
$("myButton).offset({ top: topPosition + 5 , left: leftButtonPosition });
});
And there you have it! ;)