> Can you give me a pointer to fix this?
$(':submit').each(function() {
var form = this.form;
var b = $('<a href="#" class="button">Button Text</a>");
$(this).after(b).hide();
b.click(function() {
form.submit();
return false;
});
});_______________________________________________ jQuery mailing list [email protected] http://jquery.com/discuss/
