Ok, it was me. Well, it was the encoding issue as discussed in the
comments on http://bassistance.de/jquery-plugins/jquery-plugin-validation/
Updating code to:
fixed it.
Either I'm having a really dim Friday, or something strange is going
on. I'm trying to add a method to the Validator plugin, using the
following regex:
/^[a-z0-9-.,()'%$£&"*\s]+$/
So I've added this into the "additional methods" JS file:
jQuery.validator.addMethod("lettersnumberandadvancedpunc"
Thank you :)
I'm trying to do a browser detection for client reasons :(
They don't want to spend the money on coding IE6 fixes in, they're
as... frustrated... with IE6 as we are, and have instructed us that
any visitor reaching the site through it should be presented with a
message of love, appr
Thanks, although it doesn't appear to be working for me.
No prizes for guessing it's an IE7/6 issue
I'm trying to detect IE6, with:
if (($.browser.msie == true) && ($.browser.version < 7)){
// fail
}
but the client has got a version of IE7 that's returning the following
UA string:
Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; GTB6; Mozilla/4
My nav bar consists of a single UL containing LI elements that each
contain a single A.
Well, most of them do.
Some LI elements contain a further UL as well as the A: these
"submenu" UL elements follow the same pattern of containing LI
elements that each contain a single A.
So far, so simple.
Hi,
I need to do some AJAX-based validation to check that the email
address entered isn't in the database already, but only if the "I am a
new user" radio button has been checked.
I know that the Validation plugin has a "remote" rule, and rules that
can validate one element based on the value of
If I understand you right, I think you need the "groups" option:
$("#myform").validate({
groups: {
username: "product1 product2"
}
});
AFAIK, that'll group error messages for your selected elements.
I'm trying to animate a simple image swap but it's not quite working
right. Details below, here's my code thus far:
$('#zoom_control a').click(function(){
var oImg = $('.current_page').find('img');
oImg.animate({opacity: 0}, 1000, '',function(){
Hi,
Trying to use the validation plugin (http://docs.jquery.com/Plugins/
Validation) to manage the following:
Either a radio button must be checked, or something must be in the
text box.
If no radio button is checked and nothing is typed in the text box, I
need an error message.
If a radio
Using the Validation plugin (http://docs.jquery.com/Plugins/
Validation/)
I've got checkboxes like this:
and the following code making sure that only 3 can be chosen:
$(document).ready(function() {
$('#fQuestionnaire1').validate({
rules: {
q
I'm using Nial Doherty's coda-slider plugin (http://plugins.jquery.com/
project/Coda-Slider), and trying to tweak it.
I'm creating several instances of the slider on a page. I'd like to
replicate the function of the 'previous' and 'next' buttons, but
inside the content panels themselves.
The co
12 matches
Mail list logo