# HG changeset patch # User Nathan Phillip Brink # Date 2010-10-27 20:03:40 # Node ID 930d51cef2e77a041a58a9ceddd238d913374833 # Parent b94e31b3ce958f4219b9fce98b19b61d02701e3c Also avoid calling jQuery().validate() if IE doesn't think it exists, this actually lets the input.php page work. diff --git a/scripts/scheduleInput.js b/scripts/scheduleInput.js --- a/scripts/scheduleInput.js +++ b/scripts/scheduleInput.js @@ -269,6 +269,8 @@ jQuery(document).ready(function() { //-------------------------------------------------- // Validates the form (pre-submission check) //-------------------------------------------------- + /* don't call if IE doesn't think the function exists */ + if (jQuery('#scheduleForm').validate) jQuery('#scheduleForm').validate({ debug: false, });