Jörn, (or anyone that knows of some alternate links)
In Firefox 2.x this page throws a js error when it loads, and doesn't
seem to work:
http://jquery.bassistance.de/validate/demo-test/radio-checkbox-select-demo.html
error (from Firebug console):
$.meta has no properties
$.meta.setType(
FWIW, a few in particular that I'm looking for (though I know some would
be easy to whip together) are:
usdollars (ie: $450,999.01)
date (the one in the plugin isn't very good...and says so itself)
decimal
socialsecuritynumber (ie: 123-45-6789)
uppercase
lowercase
Thanks,
Jack
Jack Killpatri
Hi All,
Anyone know of a collection of jQuery.validator.addMethod custom
validators, other than what can be culled from here?
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
I'm working on some dynamic form generation stuff, with validation
injection, and have a set of format
It's not supposed to serialize unchecked checkboxes. It's supposed to
serialize form data in exactly the same way it would be serialized via
a standard post without JavaScript. And that's exactly what it does!
Mike
> I thinkt the serialize method is great but it seems like it has been
> chang
var fm = $('form');
var uc = [];
$(':checkbox:not(:checked)', fm).each(function(){
uc.push(encodeURIComponent(this.name) + '=');
});
var serial = fm.serialize()
+ (uc.length ? '&'+uc.join('&').replace(/%20/g, "+") : '');
On Jan 4, 3:47 pm, badtant <[EMAIL PROTECTED]> wrote:
> Hi!
>
> I t
On Jan 3, 4:17 pm, chrismarx <[EMAIL PROTECTED]> wrote:
> hi,
> this works fine
>
> $elem.animate( {opacity:0}, 600, callback)
> .animate( {height:"hide"}, 700);
>
> but this doesn't
>
> $elem.animate( {opacity:0}, {queue:false, duration:600}, callback)
> .animate( {height:"
anyone?
On Jan 3, 2008 11:45 PM, Alexandre Plennevaux <[EMAIL PROTECTED]> wrote:
>
> sure here is a sample page: http://www.pixeline.be/youplaboum/ui.html
>
> thanks for any insight !
>
>
> Alexandre
>
>
--
Alexandre Plennevaux
LAb[au]
http://www.lab-au.com
With non-link element, why can't I use without ajax?
I try that:
$('h4').cluetip();
Hover over me.
Didnt work, only like this works:
$('h4').cluetip({attribute: 'id', hoverClass: 'highlight'});
Hover over me.
Can't I just set a tip without ajax? With the first one runs.
thanks
Feij
Apologies if this issue has already been reported.
On the Jquery UI site, when I click on "See the Demos", then on the
Sortables, Selectables, or Slider demos, rather than any behavior in the
demos, I just get the following javascript exceptions:
array has no properties
http://dev.jquery.com/view
I'll see what I can come up with Ariel.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of Ariel Flesler
Sent: Friday, January 04, 2008 9:30 AM
To: jQuery (English)
Subject: [jQuery] Re: jQuery.ScrollTo 1.3 released
@Stosh
Sure! actually, al
try
$elem.animate( {opacity:0}, 600, function(){
$(this).animate( {height:0}, 700);
})
make sure when you create your .js file, you remove the script tags:
Hi!
I thinkt the serialize method is great but it seems like it has been
changed to only serialize checkboxes that are checked. Earlier it
serialized all of them and i could use the selector :checked to only
get the ones that are checked if I wanted to.
Now I want to serialize all checkboxes in a
@Stosh
Sure! actually, all the releases till this one, I uploaded as ZIP,
I chose RAR this time because it was a few KB smaller, that's all.
You can get the ZIP from here:
http://www.freewebs.com/flesler/jQuery.ScrollTo/jquery.scrollTo.zip.
Should I make them all ZIP again from now on ?
@Andy
-- Original Message --
To: Jquery-en (jquery-en@googlegroups.com)
From: Jake McGraw ([EMAIL PROTECTED])
Subject: [jQuery] Re: How come when I put everything in like this, it will not
be working?
Date: 4/1/2008 16:04:16
Could you throw up an example page with the HTML document.
Could you throw up an example page with the HTML document.
- jake
On Jan 4, 2008 1:58 AM, DeaR <[EMAIL PROTECTED]> wrote:
>
>
> function disappear() {
>$("#response").fadeOut("slow")
> }
> $(document).ready(function() {
>$("#message_me").click(function() {
>$("#f
anyone?
On Jan 3, 11:17 am, chrismarx <[EMAIL PROTECTED]> wrote:
> hi,
> this works fine
>
> $elem.animate( {opacity:0}, 600, callback)
> .animate( {height:"hide"}, 700);
>
> but this doesn't
>
> $elem.animate( {opacity:0}, {queue:false, duration:600}, callback)
> .animate( {
I've done some testing and here's the results. Warning - this post is a
little long. The executive summary though is that it doesn't appear to
be ClueTip at fault here...
First, I commented out the hoverIntent include. Initially it seemed a
bit more responsive, but this appears to be a perc
function disappear() {
$("#response").fadeOut("slow")
}
$(document).ready(function() {
$("#message_me").click(function() {
$("#form").fadeIn("slow")
})
$("#send").click(function() {
var str = $("#input_form").serialize()
Hi,
I was trying to learn how to use jquery and ExtJs by following the
tutorial on this page:
http://docs.jquery.com/Tutorials:Using_Ext_With_jQuery
but on the part where I click this link,
Whee Click me Click me!
the css is not taking its effect. I wonder if i ha
Cool.
You are awesome.
It worked exactly what I wanted.
Thanks!
On Jan 3, 4:16 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote:
> There's probably a better way, but you could do something like this:
>
> $("td.data").each(function() {
> var t = $(this).text();
> $(this).html("" + t + "");
Hi All,
My table header is link to other page.
How can I have header text as link to other page and next to it image
that sorts table and stays on the same page.
I am using tablesorter ver.2.0.
Thanks in advance,
Tito
oh, right u are. interesting that firefox didn't throw any errors
there and succesfully targeted all of the child elements-
thanks for ur help!!
On Jan 3, 7:12 pm, "Karl Rudd" <[EMAIL PROTECTED]> wrote:
> Hmmm the '>' on it's own shouldn't select anything. Add '*' after it, e.g.:
>
> $('commen
That's true. Thanks for reminding me. Gonna have to stick to fixing it
in our own setup then.
On Jan 3, 8:20 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> Hi there,
>
> As far as I know, any attempt to solve the XHTML validation issue with
> JavaScript is going to fail, because validation checke
How come when I put everything in like this, it will not be working?
function disappear() {
$("#response").fadeOut("slow")
}
$(document).ready(function() {
$("#message_me").click(function() {
$("#form").fadeIn("slow")
})
$("#send").click(function()
work needed , So I build it
just put here,if anyone need it just use , and welcome to make it
better
I come from Chinese , So my English is not so good.
url:http://www.live-my-life-with-yuyi.com/lab/jquery/multiSelect/
Hey,
I've some problems using my own widget for tablesorters. I've created
a 'addDetails' widget with this source:
>$.tablesorter.addWidget({
> id:"addDetails",
> format: function(table){
> $("tbody tr", table).click( function() {
>
Chicks dig it.
On Jan 3, 4:17 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote:
> "Ream Men" just have to know...
>
> How does developing in FF increase you "reproductivity" ?
>
> :o)
>
> Rick
>
>
>
> > -Original Message-
> > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Beh
That is what I use, just be aware the the "filters" don't work. So if you
are doing a png fix, it won't work in the standalones.
On 1/4/08, Andy Matthews <[EMAIL PROTECTED]> wrote:
>
>
> You can give this a shot:
>
> http://tredosoft.com/Multiple_IE
>
> Allows you to install multiple versions of
You can give this a shot:
http://tredosoft.com/Multiple_IE
Allows you to install multiple versions of IE on your machine...all the way
back to IE 4.
-Original Message-
From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On
Behalf Of cfdvlpr
Sent: Thursday, January 03, 2008 5:08
Ariel,
Any chance we could get you to post the source in a format other than
rar? Perhaps zip or a tarball?
Pax,
- Stan
On Jan 3, 6:08 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote:
> There, now it shows an example of code when a link is clicked.
> I'd appreciate it, if some people could try it
I am using the following method of creating classes
(function($)
{
//function to perform on element
//function the relate to the object
//the class itself
})(jQuery)
Now if there a common or perferred way to have one class inherit all the
methods/member from a "base" class?
--
Vi
Hi all,
Thought I'd let you know about a little project I just did for Google: Iowa
caucus maps for Google Maps and the Iowa GOP website:
http://maps.google.com/iowacaucus2008
http://www.iowagop.net/
The code doesn't do anything really spectacular with jQuery - maybe we'll
get fancier for the
33 matches
Mail list logo