Change url: '../template/includes/process_quote.php' to url: '/template/includes/process_quote.php' in the AJAX request and see if that works. Your getting a 403 forbidden error so your either looking in the wrong place for the php script or you don't have permissions to access it.
not sure why you're not getting the success message, but you can fix the from name by adding a 5th parameter to the mail function
mail(param1, param2, param3, param4, "-femail@yourdomain.com")
I'm not sure exactly what the problem is other than at line 86 of scripts.js the variable your storing a value in is returning undefined and so when you're try to use the split method on your undefined variable it's throwing an error and Firefox won't continue. "this" is not what you think it is in that context.
It's not you saneloski, I haven't finished with the syntax highlighter. If you have a lot of code just paste it into a txt file and attach that to your post my friend.
You'll need to get the values of each and compare them as well as checking that they are not blank.
var pw = $('password-id').val();
var pwC = $('password-confirm-id').val();
if (pw != '' && pwC != '') {
if(pw != pwC) {
valid += 'Your password do not match';
}
}
testing 1,2,3...