Inserting a scene's view with jquery

Hi all - I'm trying to insert a standard record details view above a tabbed menu. I've got the basic code that moves a particular page's details above the tabbed menu, but I'm just moving div's around in a single page. That way, I need to specify the record details view that should go above the menu on each page in the menu:

// client details - cases 
$(document).on('knack-scene-render.scene_188', function(event, scene) {
var menu = $('#view_320'); 
var details = $('#view_323'); 
$(details).insertBefore(menu);
});
// client details - activities 
$(document).on('knack-scene-render.scene_189', function(event, scene) {
var menu = $('#view_320'); 
var details = $('#view_326'); 
$(menu).insertAfter(details);
});

I'd like to call up and insert the same record details view by querying Knack.views, but I'm not sure how to get that rendered into the page.

Any help would be greatly appreciated!

Shame you didn't get any help with this. So many customers questions aren't answered