Re: [jQuery] Radio button bug

2006-10-17 Thread Geoff Knutzen
This must be a recent bug. When I try this example with my slightly modified version of 1.0, the first two example hold their selected values. (the third test doesn't work at all. I assume that this is because of a bug that has been fixed.) When I use 1.02, the first two break as you have no

Re: [jQuery] SlideDown Height Problem

2006-10-06 Thread Geoff Knutzen
Glen,   You might have just found the same bug that I found the other day. Luckily, Klaus has already fixed the problem. Check for a message from yesterday titled (so descriptively) “Bug?” It may give you a clue as to your problems. Quickly looking at your CSS, it looks similar to mine

[jQuery] Bug?

2006-10-05 Thread Geoff Knutzen
I am using rev: 249 Around line 363 is a function css: function(e,p) { in the middle of that function is a section like this } else { e = $(e.cloneNode(true)).css({ visibility: "hidden", position: "absolute", display: "block" }).prependTo("body")[0];

Re: [jQuery] POSSIBLE bug: slideUp / slideDown and nested divs

2006-10-05 Thread Geoff Knutzen
I just hit this problem myself. I have done a bit of investigation, and I have a different solution and may have uncovered a bug. I am working with rev. 249 Bug first... Somewhere around line 1313 is setAuto: function(e,p) in the middle of this function is a check if ( p

[jQuery] jquery with Omniture

2006-09-29 Thread Geoff Knutzen
Has anyone tried using jquery with the Omniture Web Analytics package? I am currently trying to use jquery on an existing site that is using Omniture and some strange things are happening. I haven’t tracked it down completely, but there seems to be some problem with the way Omniture is a

[jQuery] change a style rule

2006-09-29 Thread Geoff Knutzen
Is there a jquery way to change a rule in a css class? For example, say I have a class like this   .normalFont {     font-size: 14px; }   Is there someway to change the font-size of this class using jquery (or some other _javascript_ way)?   Thanks ___

Re: [jQuery] When / how did you find out about jQuery?

2006-09-27 Thread Geoff Knutzen
Similar tale here. I was searching for a new library to work with and came up with the same bunch, Prototype/Scriptaculous, Dojo & Mochikit. Jquery popped up during that search. It wasn't until I looked through thickbox that I became a convert though. -Original Message- From: [EMAIL PROTEC

Re: [jQuery] how to get the display value of an element?

2006-09-25 Thread Geoff Knutzen
Ah, got it. .css returns the currentStyle Thanks -Geoff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Will Jessup Sent: Monday, September 25, 2006 4:03 PM To: jQuery Discussion. Subject: Re: [jQuery] how to get the display value of an element? www.vis

[jQuery] how to get the display value of an element?

2006-09-25 Thread Geoff Knutzen
I am writing a routine that can accept any element. I need to determine whether the element is displayed inline, as a box or some other display type. Is there a way to determine this if it has not already been set by a style? An unstyled A tag should return a display type of inline, wh

Re: [jQuery] Cookie handling in JQuery

2006-09-13 Thread Geoff Knutzen
But remember that it is very easy for the user to turn off or suppress cookies. My numbers are showing around 1% without cookies. (~.1% have no javascript, but I think we are skewed a bit on that). I would rely on javascript before relying on a cookie. But that is just me -Original Message--

[jQuery] Autocompleter Safari bug

2006-09-13 Thread Geoff Knutzen
In Safari, pressing return in the autocomplete dropdown will submit the form that the autocompleter is in. The preventDefault method is not working some reason. This is working fine (the form is not submitted) in IE and FF. Wondering if this is a bug in autocomplete or in jquery? I am not really

Re: [jQuery] Autocompleter update (again)

2006-09-07 Thread Geoff Knutzen
IE too -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Thursday, September 07, 2006 1:48 PM To: jQuery Discussion. Subject: Re: [jQuery] Autocompleter update (again) > 2) Is there something I can add to programmatically disable the defa

Re: [jQuery] Autocompleter update (again)

2006-09-07 Thread Geoff Knutzen
1) Make sure that the input element has the rule display: block .ac_wrapper input { width: 100%; display: block; } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jason Huck Sent: Thursday, September 07, 2006 1:39 PM To: discuss@jquery.com

Re: [jQuery] Autocompleter update (again)

2006-09-07 Thread Geoff Knutzen
What problems are you seeing? http://www.dyve.net/jquery/?autocomplete seems fine to me right now on ie and ff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dylan Verheul Sent: Thursday, September 07, 2006 10:41 AM To: jQuery Discussion. Subject: Re: [j

[jQuery] Autocomplete plugin: update for jQuery 1.01

2006-09-01 Thread Geoff Knutzen
Hi Dylan,   Thanks for making your autocomplete plugin for jquery.   This is my first adventure with jquery. So far I really like it.   I do have a question for you about your plugin. What is the purpose of  e.preventDefault(); in the keydown function?   The reason I ask is becaus

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread Geoff Knutzen
John, That is really good news. This will save me a TON of work over the next bit. Thank you for getting this out. We all are very grateful for all that you have done and are doing. Again, thanks -Geoff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread Geoff Knutzen
an clue me in. (...and yes, I read http://jquery.com/docs/PrototypeAndJQuery/ .) On 9/1/06, Geoff Knutzen <[EMAIL PROTECTED]> wrote: Does this work in the current 1.01 release? I can't seem to get it to function right. It did seem to be okay with the old release.   I asked this

Re: [jQuery] Running jQuery when already have $() from prototype

2006-09-01 Thread Geoff Knutzen
Does this work in the current 1.01 release? I can’t seem to get it to function right. It did seem to be okay with the old release.   I asked this same question a day or two ago and got no reply. I think it probably got lost in the confusion of the new release.   It is really limiting m

Re: [jQuery] Uncaught exception (Autocomplete / jQuery 1.0.1)

2006-08-31 Thread Geoff Knutzen
23 PM To: jQuery Discussion. Subject: Re: [jQuery] Uncaught exception (Autocomplete / jQuery 1.0.1) That is a weird one... let me know what you find out - did this bug exist with 1.0 & autocomplete? --John On 8/31/06, Geoff Knutzen <[EMAIL PROTECTED]> wrote: > I can verify this, but I

Re: [jQuery] Uncaught exception (Autocomplete / jQuery 1.0.1)

2006-08-31 Thread Geoff Knutzen
lem lies in the line // Traverse up the tree while ( p && p != this ) p = p.parentNode; but I am just guessing I will be looking further into this later -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Geoff Knutz

Re: [jQuery] Uncaught exception (Autocomplete / jQuery 1.0.1)

2006-08-31 Thread Geoff Knutzen
I can verify this, but I haven't had a chance to look into where it is coming from. I am just starting to implement your autocomplete plugin. Thanks for the work on it. I will try and track down this bug in a bit, if you don't get to it first -Geoff -Original Message- From: [EMAIL PROTEC

Re: [jQuery] jQuery Chaos

2006-08-31 Thread Geoff Knutzen
I'll second that! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Thursday, August 31, 2006 11:29 AM To: jQuery Discussion. Subject: Re: [jQuery] jQuery Chaos Karl Swedberg schrieb: > Hang in there, John. Even super-humans make mistake

Re: [jQuery] did something change with the interaction with prototype?

2006-08-31 Thread Geoff Knutzen
?   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Geoff Knutzen Sent: Wednesday, August 30, 2006 4:04 PM To: discuss@jquery.com Subject: [jQuery] did something change with the interaction with prototype?   did something change with the interaction with prototype

[jQuery] did something change with the interaction with prototype?

2006-08-30 Thread Geoff Knutzen
did something change with the interaction with prototype?   Before the current release, Rev: 231 I could use prototype and jquery together on the page. I would call prototype.js before jquery.js. I could then do something like alert($(“someID”).id) and would get an alert of “someID”