Javascript code to show a view on every page

Can anyone share a javascript code in order to show a specific view on every page of the app?

371946989671, it didn't work for me... Did it work for you?

Try something like this.

This takes view_306 and puts it after the info bar. Obviously change your view # and you can change the location to insert after.

$(document).on('knack-scene-render.any', function(event, scene) {
$("#view_306").insertAfter($(".kn-info-bar"));
})