[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

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

2008-01-04 Thread DeaR
script type=text/javascript function disappear() { $(#response).fadeOut(slow) } $(document).ready(function() { $(#message_me).click(function() { $(#form).fadeIn(slow) }) $(#send).click(function() { var str =

[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, lt;a href=# id=wheelinkgt;Whee Click me Click me!lt;/agt; the css is not taking its effect. I wonder if

[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.:

[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? script type=text/javascript function disappear() { $(#response).fadeOut(slow) } $(document).ready(function() { $(#message_me).click(function() { $(#form).fadeIn(slow) })

[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 Behalf Of Eridius

[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? --

[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 IE on your

[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

[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(a href='' + t + /a);

[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 checkers

[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: script type=text/javascript function disappear() { $(#response).fadeOut(slow) } $(document).ready(function() { $(#message_me).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] 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( {height:hide},

[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] 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

[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 ?

[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: script type=text/javascript /script

[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,

[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

[jQuery] cluetip question

2008-01-04 Thread Feijó
With non-link element, why can't I use without ajax? I try that: $('h4').cluetip(); h4 title=Fancy Title!|testingHover over me./h4 Didnt work, only like this works: $('h4').cluetip({attribute: 'id', hoverClass: 'highlight'}); h4 title=Fancy Title! id=ajax3.htmHover over me./h4 Can't I

[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] 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:hide}, 700);

[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 thinkt

[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

[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

[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