[jQuery] Order of elements in a jquery object

2008-10-01 Thread Geoffrey Knutzen
I make a query, say using a class selector. I will get a jquery object back. I can iterate over that object using each(). Is there a guaranteed order that the elements in this object will be exposed in the each loop? If so, what is it? I have looked around and I can't seem to find this

[jQuery] detecting height change in an iframe

2007-09-28 Thread Geoffrey Knutzen
I am trying to write a function to autosize an iframe so that the iframe expands it's height to the height of the page the iframe contains. I have been successful in getting the iframe to resize when a page is loaded into the iframe. My problem is what to do when that page is dynamic and

[jQuery] Re: Enterprise Javascript?

2007-09-26 Thread Geoffrey Knutzen
In a former life, I worked at a startup that was doing just that. Giving database access to server-side javascript. Worked pretty well too. The company died during the dot-com bust, but the remnants live on as a company called Dataweb. http://www.dataweb.com/default.view You can sign up for

[jQuery] RE: Selecting relative or absolute positioned elements

2007-09-18 Thread Geoffrey Knutzen
-Bump- Anyone have any ideas? _ From: Geoffrey Knutzen [mailto:[EMAIL PROTECTED] Sent: Friday, September 14, 2007 3:24 PM To: 'jquery-en@googlegroups.com' Subject: Selecting relative or absolute positioned elements Inside a given div, say of id #test, how do I select all

[jQuery] Selecting relative or absolute positioned elements

2007-09-14 Thread Geoffrey Knutzen
Inside a given div, say of id #test, how do I select all elements that have relative or absolute positioning? Can't figure this one out Thanks -Geoff

[jQuery] Re: Interface slider - get value of multiple handles

2007-08-15 Thread Geoffrey Knutzen
I don't think you can get both values using onSlide(). You need to keep track of both values somewhere else and update those values as you slide. It gets tricky when the sliders cross, but you can work through it -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: New Yahoo Minifier - YUI Compressor

2007-08-14 Thread Geoffrey Knutzen
I went to a short talk by Steve Souders, the Chief Performance Yahoo. He has done a bunch of investigation on performance at Yahoo and has come up with his 13 rules for better performance. And has written a book about it. http://developer.yahoo.com/performance/rules.html His research showed

[jQuery] Re: Two words for Jquery

2007-08-01 Thread Geoffrey Knutzen
Remember, the two words must be less than a total of 20 characters (compressed) :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Duymelinck Sent: Wednesday, August 01, 2007 6:41 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re:

[jQuery] bookmarklet iframe question

2007-08-01 Thread Geoffrey Knutzen
I am writing a bookmarklet for my own debugging needs. I am trying to get the innerHTML (or other properties) for all elements with a specific classname that are in an Iframe with a specific id. What is the syntax to do a query like this? Thanks -Geoffrey

[jQuery] Re: bookmarklet iframe question

2007-08-01 Thread Geoffrey Knutzen
a frameReady plugin that should point you in the right direction: http://ideamill.synaptrixgroup.com/?p=6 --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Aug 1, 2007, at 3:26 PM, Geoffrey Knutzen wrote: I am writing a bookmarklet for my

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Geoffrey Knutzen
A couple of weeks ago, I attended a talk by Steve Souders http://stevesouders.com/ He is Chief Performance Yahoo! He has a new book coming out about performance on the web. One of his points was to include Javascript at the bottom of the page. But even he admitted that this is not practical in

[jQuery] How to get the entire width of a page

2007-07-13 Thread Geoffrey Knutzen
Seems simple. How do I calculate the entire width of a page, even when there are scroll bars? I am using the dimensions plug in ($(html).innerWidth(); $(html).width()); ($(body).innerWidth(); $(body).width()); ($(document).innerWidth(); $(document).width()); All seem to return the

[jQuery] Re: How to get the entire width of a page

2007-07-13 Thread Geoffrey Knutzen
in Firefox but I've recently fixed it! You can grab the latest from SVN to get the fixes now. I plan on doing a new release very, very soon. SVN: http://jqueryjs.googlecode.com/svn/trunk/plugins/dimensions/ -- Brandon Aaron On 7/13/07, Geoffrey Knutzen mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] wrote

[jQuery] Re: bgiframe broken by 1.1.3.1

2007-07-12 Thread Geoffrey Knutzen
until I do another official release (2.1.1) very soon. http://jqueryjs.googlecode.com/svn/trunk/plugins/bgiframe/ -- Brandon Aaron On 7/11/07, Geoffrey Knutzen [EMAIL PROTECTED] wrote: I don't have a bullet-proof test of this yet, but it seems that bgiframe no longer works with 1.1.3.1. Can

[jQuery] bgiframe broken by 1.1.3.1

2007-07-11 Thread Geoffrey Knutzen
I don't have a bullet-proof test of this yet, but it seems that bgiframe no longer works with 1.1.3.1. Can anyone else confirm? I don't know why yet. I, for one, really need this plug in -Geoffrey

[jQuery] thickbox, lightbox jqModal, reloaded, dim screen...

2007-07-10 Thread Geoffrey Knutzen
I have a new project on my plate to create an interface similar to Netflix, basically, a lightbox effect. By its very nature, the content in the lightbox will be in the form of an Iframe. Which plug in would be recommended? There seems to be a number of them that do similar effects. I am

[jQuery] Re: Need help with a jQuery Conflict

2007-06-20 Thread Geoffrey Knutzen
I had some troubles with jquery and Omniture a while back. I wasn't the one who solved the problem and that dev has moved on. Sorry I can't be of more help, but I do feel your pain. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of AJ Sent:

[jQuery] Re: Interface: More slider problems, restricted and fractions together

2007-06-14 Thread Geoffrey Knutzen
Gordon, I am not going to be much help with the slider questions you have. I can only give some personal experience. Sorry. I did a project a few months ago and found the sliders to be wanting in many ways. They were hard to get set; the css had to be very precise. There is the annoying bug

[jQuery] extra parameter at the end of .click() in older code

2007-05-30 Thread Geoffrey Knutzen
I am using some code written a few months ago by another developer. It is in this form: $('#someId').click(function () { /*do some stuff here*/ }, false); What is the purpose of the false attribute after the function? Is that some sort of deprecated functionality or just a mistake? Thanks

[jQuery] Re: Determining show / hide state

2007-05-30 Thread Geoffrey Knutzen
Wow, .is saves the day again. That little guy always gets me. http://docs.jquery.com/DOM/Traversing#is.28_expr_.29 Is there a more extensive list of what could be done with .is? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sent: Wednesday, May 30,

[jQuery] Re: Small delay in animate function - how can I fix it?

2007-05-16 Thread Geoffrey Knutzen
Have you found any info about this? I am seeing this too _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Tuesday, May 15, 2007 6:38 AM To: jquery-en@googlegroups.com Subject: [jQuery] Small delay in animate function - how can I fix it?

[jQuery] Memory leak in Interface:Sliders?

2007-05-14 Thread Geoffrey Knutzen
I just opened up http://interface.eyecon.ro/demos with drip and there seems to be a number of leaks. Or is this a problem with drip? -Geoff

[jQuery] Re: Interface Slider - Clicks don't trigger onChange event

2007-04-23 Thread Geoffrey Knutzen
If you can get by without the ability to click on the slider to get the handle to move, you might try a real ugly hack. You can put two handles on the slider, and then hide the first handle. Only the first handle is affected by clicking on the slider. It is ugly, but might solve your problem.

[jQuery] Re: Interface Slider - Clicks don't trigger onChange event

2007-04-23 Thread Geoffrey Knutzen
solution probably. Any ideas? :) On Apr 23, 5:21 pm, Geoffrey Knutzen [EMAIL PROTECTED] wrote: If you can get by without the ability to click on the slider to get the handle to move, you might try a real ugly hack. You can put two handles on the slider, and then hide the first handle. Only

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-18 Thread Geoffrey Knutzen
Instead of hiding the box, perhaps there could be an option to display a message in the box that there are no matches to the users current input. In situations where the user must select from the list (the input will have to pass validation later) this could be helpful. -Original

[jQuery] Re: hasClass

2007-04-17 Thread Geoffrey Knutzen
Aaron On 4/17/07, Geoffrey Knutzen [EMAIL PROTECTED] wrote: How can I test if an element has a specific class? If I have div class=foo bar How can I check if the element has class=bar Seems like it should be easy, but I am having troubles. Thanks -Geoff

[jQuery] RE: Simple selector question

2007-04-09 Thread Geoffrey Knutzen
Again, Press send, find answer. I answered my own question $(table).css(borderCollapse,collapse) I had led myself down the wrong path and was totally lost Thanks anyway -Original Message- From: Geoffrey Knutzen [mailto:[EMAIL PROTECTED] Sent: Monday, April 09, 2007 1:27 PM

[jQuery] Png fix for ie 6

2007-04-05 Thread Geoffrey Knutzen
Is there a jquery plugin for fixing .png images in IE 6? Thanks -Geoff

[jQuery] Re: Promoting jQuery the WRONG way

2007-04-04 Thread Geoffrey Knutzen
Not a bad tag-line: Keep on coding and don't be lame -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jake McGraw Sent: Wednesday, April 04, 2007 1:57 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Promoting jQuery the WRONG way Rey: