Is it possible to dynamically create a full-screen div
using jQuery directly from JavaScript without the need to first define it in the HTML and then make it visible with jQuery or CSS?
UPDATE
After some troubleshooting, I found a solution to my issue:
var newDiv = "<div>....</div>";
$('body').append(newDiv);