Can someone please show me how i can add an automatic page refresh after the following jquery event has taken place?
Thanks.
<script>
$(document).ready(function() {
setTimeout(function() {
$(".infobox-forum").fadeOut("slow", function () {
$("infobox-forum").remove();
});
}, 2000);
});
</script>