jQuery(document).ready(function ($) { if (scriptParams.simple_banner_text != "") { if (!scriptParams.pro_version_enabled || (scriptParams.pro_version_enabled && !scriptParams.in_array)) { $('
' + scriptParams.simple_banner_text + '
') .prependTo('body'); var bodyPaddingLeft = $('body').css('padding-left') var bodyPaddingRight = $('body').css('padding-right') if (bodyPaddingLeft != "0px") { $('head').append(''); } if (bodyPaddingRight != "0px") { $('head').append(''); } } } // Debug Mode // Console log all variables if (scriptParams.pro_version_enabled && scriptParams.debug_mode) { console.log(scriptParams); } });