I need to submit a form on a specific page, and it needs to click a radio button before it submits the form.
I got everything working, however when I let GreaseMonkey submit the form the page just returns a white page. As where if I would click Submit manually, it says 'Wait a second please..' and then goes on to another page.
If neccessary I can give you the URL of the form I am talking about.
This is the script I am using:
$(document).ready(function() {
$("input[pmmethod=paypal]").click();
$(".submit-button").click();
});