[jQuery] jquery validation demo errors

2008-01-04 Thread Jack Killpatrick
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(

[jQuery] Re: jquery validator addMethod library?

2008-01-04 Thread Jack Killpatrick
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

[jQuery] jquery validator addMethod library?

2008-01-04 Thread Jack Killpatrick
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

[jQuery] Re: Serialize unchecked checkboxes?

2008-01-04 Thread Mike Alsup
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

[jQuery] Re: Serialize unchecked checkboxes?

2008-01-04 Thread Wizzud
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

[jQuery] Re: using animate() with duration/queue object and callback doesn't work

2008-01-04 Thread Wizzud
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:"

[jQuery] Re: ui.datePicker and clone() issue

2008-01-04 Thread Alexandre Plennevaux
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

[jQuery] cluetip question

2008-01-04 Thread Feijó
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

[jQuery] Problems with Jquery-ui demos

2008-01-04 Thread Josh Ain
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

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-04 Thread Andy Matthews
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

[jQuery] Re: using animate() with duration/queue object and callback doesn't work

2008-01-04 Thread Alexandre Plennevaux
try $elem.animate( {opacity:0}, 600, function(){ $(this).animate( {height:0}, 700); })

[jQuery] Re: How come when I put everything in like this, it will not be working?

2008-01-04 Thread Alexandre Plennevaux
make sure when you create your .js file, you remove the script tags:

[jQuery] Serialize unchecked checkboxes?

2008-01-04 Thread badtant
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

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-04 Thread Ariel Flesler
@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

[jQuery] Re: How come when I put everything in like this, it will not be working?

2008-01-04 Thread Alexandre Plennevaux
-- 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.

[jQuery] Re: How come when I put everything in like this, it will not be working?

2008-01-04 Thread Jake McGraw
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

[jQuery] Re: using animate() with duration/queue object and callback doesn't work

2008-01-04 Thread chrismarx
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( {

[jQuery] Re: Cluetip delayed?

2008-01-04 Thread Shawn
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

[jQuery] How come when I put everything in like this, it will not be working?

2008-01-04 Thread DeaR
function disappear() { $("#response").fadeOut("slow") } $(document).ready(function() { $("#message_me").click(function() { $("#form").fadeIn("slow") }) $("#send").click(function() { var str = $("#input_form").serialize()

[jQuery] Using Jquery and ExtJS

2008-01-04 Thread phpcurious
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

[jQuery] Re: How can I add HTML tag from jQuery?

2008-01-04 Thread jQuery(new).to(me)
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 + "");

[jQuery] tablesorter: link in header

2008-01-04 Thread denicelo
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

[jQuery] Re: IE bug with ">" child selector for XML

2008-01-04 Thread chrismarx
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

[jQuery] Re: Replacing tags

2008-01-04 Thread neXib
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

[jQuery] Why is it not working?

2008-01-04 Thread DeaR
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()

[jQuery] build my first jquery plugin multiselect

2008-01-04 Thread lzyy
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/

[jQuery] Problems using Tablesorter widget

2008-01-04 Thread confuso
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() { >

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-04 Thread timothytoe
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

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-04 Thread Benjamin Sterling
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

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-04 Thread Andy Matthews
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

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-04 Thread Stosh
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

[jQuery] javascript class question

2008-01-04 Thread Eridius
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

[jQuery] Ann: Google Iowa caucus maps

2008-01-04 Thread Michael Geary
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