HEX
Server: LiteSpeed
System: Linux premium221.web-hosting.com 4.18.0-553.45.1.lve.el8.x86_64 #1 SMP Wed Mar 26 12:08:09 UTC 2025 x86_64
User: madepabj (2566)
PHP: 8.3.26
Disabled: NONE
Upload Files
File: //home/madepabj/public_html/wp-content/themes/rehub-theme/js/readingprogress.js
jQuery(document).ready(function($) {
'use strict';	
    $('body').prepend('<progress value=\"0\" class=\"rh-progress-bar\"></progress>');
     $('body').prepend('<style>.rh-progress-bar{position: fixed;left: 0;top:0;width: 100%;height: 5px;-webkit-appearance: none;appearance: none;border: none;background-color: transparent;z-index: 100000}.rh-progress-bar{color:#43c801;}.rh-progress-bar::-webkit-progress-bar {background-color: transparent;}.rh-progress-bar::-webkit-progress-value {background-color: #43c801;}.rh-progress-bar::-moz-progress-bar {background-color: #43c801;}</style>');

    var winHeight = $(window).height(), 
        docHeight = $('.post-inner').height(),
        progressBar = $('progress'),
        max, value;

        max = docHeight - winHeight;
        progressBar.attr('max', max);
    $(window).on("scroll", function(){
        value = $(window).scrollTop();
        progressBar.attr('value', value);
    });
});