Riders Insurance
window.console = window.console || function(t) {};
Submit a claim
Policyholder details
Secondary text could go here to help explain why we need this info
Catastrophe details
Incident location
document.addEventListener("click", function (e) { if (document.activeElement.toString() == "[object HTMLButtonElement]") { document.activeElement.blur(); } }); $(document).ready(function () { const win = $(window); const doc = $(document); const progressBar = $('progress'); // const progressLabel = $('.progress-label'); const setValue = () => win.scrollTop(); const setMax = () => doc.height() - win.height(); const setPercent = () => Math.round(win.scrollTop() / (doc.height() - win.height()) * 100); // progressLabel.text(setPercent() + '%'); progressBar.attr({ value: setValue(), max: setMax() }); doc.on('scroll', () => { // progressLabel.text(setPercent() + '%'); progressBar.attr({ value: setValue() }); }); win.on('resize', () => { // progressLabel.text(setPercent() + '%'); progressBar.attr({ value: setValue(), max: setMax() }); }); }); //# sourceURL=pen.js