I have a PayPal form as follows: (some fields are added using jQuery)
<form method="post" action="https://www.paypal.com/cgi-bin/webscr">
<input type="hidden" value="_s-xclick" name="cmd">
<input type="hidden" value="sdfgsdfg" name="hosted_button_id">
<input type="button" value="Purchase One Year License" name="submit" class="pp_button" id="35" style="background-color: rgb(255, 255, 255);">
<input type="hidden" value="35" name="cs_project_id">
<input type="hidden" value="6d04c7a241ad4415eb194a90dc252b09" name="cs_transaction_id">
</form>
I'm trying to submit the form using the 3rd input element (type="button") using this code:
$(".pp_button").click(function()
{
var button = $(this);
button.parent().submit();
});
This should work fine right? I'm using var button because of other parts later in the click() function. I've checked the tagName of button.parent() and it's given as FORM, so that's fine...
What have I done wrong here? This usually works fine... Is it because I'm inserting tags (the last two input tags) from an AJAX call? Something else? A lack of mature cheddar on my desk?
Thanks,
James