Here's the error I'm getting in IE 8:
Code:
Webpage error details
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0)
Timestamp: Sat, 22 Jan 2011 06:11:22 UTC
Message: '$.validationEngineLanguage' is null or not an object
Line: 768
Char: 2
Code: 0
URI: http://www.emailmeform.com/builder/js/dynamic.php?t=post&t2=0
Here's the code it's pointing to (section highlighted, line 768 red):
Code:
. . . "fname":"check_file_type",
"alertText":"* Invalid file type, allowed (jpg,jpeg,png,gif,bmp,psd,doc,docx,txt,pdf)"
}
}
}
}
})(jQuery);
$(document).ready(function() {
$.validationEngineLanguage.newLang()
});;/*
* Thickbox 3.1 - One Box To Rule Them All.
* By Cody Lindley (http://www.codylindley.com)
* Copyright (c) 2007 co . . .
If you can, change that to:
Code:
"fname":"check_file_type",
"alertText":"* Invalid file type, allowed (jpg,jpeg,png,gif,bmp,psd,doc,docx,txt,pdf)"
}
}
}
}
})(jQuery);
jQuery(document).ready(function($) {
$.validationEngineLanguage.newLang()
});;/*
* Thickbox 3.1 - One Box To Rule Them All.
* By Cody Lindley (http://www.codylindley.com)
* Copyright (c) 2007 co
Bookmarks