xxxxxxxxxx
document.addEventListener("DOMContentLoaded", function() {
const xmlHttp = new XMLHttpRequest(),
div = document.getElementById('music_all_ajax');
xmlHttp.open("GET", '{{ route('music ') }}', false); // false for synchronous request
xmlHttp.send(null);
div.insertAdjacentHTML('afterbegin', xmlHttp.responseText);
});
xxxxxxxxxx
var elemDiv = document.createElement('div');
elemDiv.style.cssText = 'position:absolute;width:100%;height:100%;opacity:0.3;z-index:100;background:#000;';
//Below is the important step
document.body.appendChild(elemDiv);