3 lines
73 B
JavaScript
3 lines
73 B
JavaScript
|
function addStyle(style) {
|
||
|
$("body").after(`<style>${style}</style>`);
|
||
|
}
|