View Single Post
Nutrox's Avatar Nutrox Nutrox is offline Super Moderator 17 Creative Assets 2009-04-18 #2 Old  
You could take the button input element out of the form and create a standard link to submit the form.

Code:
<a id="ppbutton" href="#" onclick="document.getElementById('ppform').submit();return false"></a>
Just give the form a ppform ID. Normally I wouldn't have the JS on the link like that but hey-ho.

Reply With Quote