I just configured a slider in a Drupal 7 test site using the Drupal modules Views Slideshow & Views Slideshow Cycle (v. 7.x-3.0-alpha1). The modules, like many Drupal modules, use jQuery for their functionality.
The slideshow works well in most browsers, but IE8 & IE8+compatibility mode generate the following error (only on the page w/ the slides). The slideshow itself doesn't work in these browsers. Errors for both development & minified shown:
User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; .NET4.0C; .NET4.0E; BRI/2)
The version available for download on the plugin's page renders an error on email validation (won't pass any input, valid or otherwise). If you get this error, try installing the latest version.
The error is an unexpected "(". This is the syntax shown in the documentation, so I don't see what’s wrong here. After some checking, I was able to determine that it's the 2nd "(" that in line 6 that is being flagged.
I've got a group of 3 radio buttons, 'foo[]'; if the user selects #foo0, then #fooDetail is not required, but if the user selects either #foo2 or #foo3, #fooDetail is required:
I've got some fields that need to validate only if a previous field returns true. I need to add a class ('required') to the dependent field's label only when that happens, so I can style it (append a red asterisk).
I'm using the datepicker.ui in a form that also uses the validate plugin. The form happens to use the accordion functionality found here, but I've also tested this in a simpler form that uses the standard syntax for both scripts.
When the user initially picks a date using the datepicker, validate runs and flags the input as invalid, even 'though the field is valid. choosing another date, or choosing the date a second time, sets the field to valid. Simplified HTML:
I'm trying to create a branching form wherein the user selects a date using the datepicker plugin, then, depending on whether they choose a weekday or a Saturday, they are presented with one or the other of 2 select lists to choose the time.
I'm just getting started, and I can't seem to get the regex right. Here's a simplifed version of the relevant part of the datepicker,