I don't know that much about javascript yet, but I know you can open and close a webpage with this:
var myWindow = window.open('whateverpage.com'); myWindow.close();
but say you wanted to actually do something on that page you opened, like filling out a form, is there a way to do that? Something like:
myWindow.getElementById('input').value = 'hello';
Edit: the reason I'm wondering is that I want to make an autologin page (for personal use so I can go through school stuff a little bit faster). So all I need to do is make a webpage that changes the values of inputs on another webpage and then submits that form.