How to add css styles inside <body>
or <head>
, placed in javascript file like this:
<style type="text/css">
.popup-bg {
position: fixed;
left: 0;
top: 0;
width: 100%;
height: 100%;
background: #eee;
}
</style>
The only way is to write css inside javascript, there is no access to html or any external css.
Thanks.