Skip to content

Instantly share code, notes, and snippets.

@snormand27
snormand27 / gist:da23358fe65c6486634396faab0ee14d
Last active July 15, 2019 04:48
Code used for facetWP reload page loop
<script>
(function($) {
$(document).on('facetwp-refresh', function() {
location.reload()
});
})(jQuery);
</script>