So currently on button click I'm popping up a new window that goes to some website. But not only do I need to pop open to this new site but I also need to scroll down a little on the popped up screen. Here is what I'm currently doing:
$(document).ready(function () {
  $('.popup').click(function(event) {
    event.preventDefault();
    window.open("https://www.spmet.aspx", "popupWindow", "width=1400,height=600,scrollbars=yes");
    setTimeout(function() { scrollTo(0,150) }, 1000);
  });
});
This currently opens the window successfully but how do I amend a change that will scroll to a particular spot in the site.
 
     
     
    