// get the module to move with it's identifier
var clock = document.getElementById('module_0_clock');
// append it to the region you like
document.querySelector('div.region.top.left div.container').appendChild(clock);
it will work only if you already have a module in that position, otherwise you need to ovverride the style to display block
document.querySelector('div.region.top.left div.container').style.display = 'block';
that’s it