You can make javascript scroll your website 1px down and 1px back up to get the effects?
Put something like this in your custom code:
<script>
function init() {
window.scrollTo(0, 1);
window.scrollTo(0, -1);
}
init()
</script>
Hope it helps.