IX 2.0 - Scroll into view not activating until the page is scrolled a bit

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.

7 Likes