Replies: 3
Have you thought about verifying the two email fields in real time? Something along the lines of:
if($("#author_email").val() != $("#author_confirm_email").val())
{
alert("emails don't match, sucka");
}
I would love to hear what your thoughts are on this!