A small note for those in SharePoint 2013. The body already has overflow: hidden
. What you are looking for is to set overflow: hidden
on div element with id s4-workspace
, e.g.
var body = document.getElementById('s4-workspace');
body.className = body.className+" modal-open";