I compared the includes/templates/YOUR_TEMPLATE/jscript/jquery/jquery_form_check.php
in my template folder with the same file in numinix-fec-119ca30 using Meld. Both are identical. I uploaded the file again and saw no change. I don't have the code
Code:
</radion check_form_registration(form_name) {
anywhere in the file or any file. I don't have the string "radion" in any file on the site. I checked using:
Code:
$ grep -ri "radion" *
Checked both local dev files and live server files.
When I change the function name to just form_check in jqueyr_form_check.php, Firebug console then shows the error:
TypeError: field_value is undefined
which points to:
Code:
if (field_value == '' || field_value.length < field_size) {"
The field_value is set just before that line:
Code:
18 function check_input(field_name, field_size, message) {
19 if (jQuery('[name=' + field_name + ']') && (jQuery('[name=' + field_name + ']').attr("visibility") != "hidden")) {
20 if (field_size == 0) return;
21 var field_value = jQuery('[name=' + field_name + ']').val();
22 if (field_value == '' || field_value.length < field_size) {
23 error_message = error_message + "* " + message + "\n";
24 error = true;
25 jQuery('[name=' + field_name + ']').addClass("missing");
26 }
27 }
28 }
I'm thinking there is some javascript conflict somewhere but I'm not seeing it.
Bookmarks