jQuery.validator.addMethod("maxWords", function(value, element, params) {
return this.optional(element) || stripHtml(value).match(/\b\w+\b/g).length <= params;
}, jQuery.validator.format("Please enter {0} words or less."));
in additional_methods.js
is throwing out some jquery is undefined problems. Various other bits seem to be having issues with the multiple versions of the JQuery scripts
Now the truly odd thing is this is entirely intermittent. Has anyone had any luck with a quick a dirty update of the JQuery libraries Roadkill is using?
I want to love this as it looks great and does exactly what I need, I just can't have it falling over randomly. Especially when a quick refresh and trying again seems to fix it.
Oh how I hate intermittent bugs.