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

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

[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

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

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

[jQuery] Re: bookmarklet iframe question

2007-08-01 Thread Geoffrey Knutzen
together 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 bookmark

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

[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] Re: How to get the entire width of a page

2007-07-13 Thread Geoffrey Knutzen
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]> [E

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

[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

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

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

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

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Geoffrey Knutzen
Would it be possible to create an "Overdrive" plugin that would speed things up? If you are using normal queries, you could use the base version of jquery. If you are in a special situation, querying a huge number of things or special queries that take a long time, simply include the "Overdrive" p

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

[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: Memory leak in Interface:Sliders?

2007-05-16 Thread Geoffrey Knutzen
-bump Anyone have any ideas? Is this a problem with interface? -Original Message- From: Geoffrey Knutzen [mailto:[EMAIL PROTECTED] Sent: Monday, May 14, 2007 3:20 PM To: 'jquery-en@googlegroups.com' Subject: Memory leak in Interface:Sliders? I just opene

[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
of making it work then that would be the cleanest 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

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

[jQuery] Re: hasClass

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

[jQuery] hasClass

2007-04-17 Thread Geoffrey Knutzen
How can I test if an element has a specific class? If I have 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-10 Thread Geoffrey Knutzen
Behalf Of Karl Swedberg Sent: Monday, April 09, 2007 3:55 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Simple selector question On Apr 9, 2007, at 4:31 PM, Geoffrey Knutzen wrote: Again, Press send, find answer. I answered my own question $("table").css("

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

[jQuery] Simple selector question

2007-04-09 Thread Geoffrey Knutzen
How would one select all tables in a document that have the css property border-collapse set to collapse? My goal is to make a work around for a FF bug (https://bugzilla.mozilla.org/show_bug.cgi?id=244135) where borders disappear sometimes. I am hoping for find all tables with border-collapse=c

[jQuery] Re: Png fix for ie 6

2007-04-05 Thread Geoffrey Knutzen
-easy/ > and > http://nemoweb.com.au/jquery/IEPNGHack/ (do a view source) > > Rey... > > Geoffrey Knutzen wrote: > > Is there a jquery plugin for fixing .png images in IE 6? > > > > Thanks > > > > -Geoff > > > > -- > BrightLight Development, LLC. > 954-775- (o) > 954-600-2726 (c) > [EMAIL PROTECTED] > http://www.iambright.com

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

[jQuery] Re: 15 second delay with IE

2007-04-04 Thread Geoffrey Knutzen
Works fine for me with ie6 Have you restarted your computer lately? If you leave winxp and ie open for a long time (days), IE will slow to a crawl after awhile. I have always assumed it was a memory leak, but have never taken the time to verify. Closing ie and starting it again may help, and I b

[jQuery] Re: Dealing with incremental page rendering and ready events

2007-04-02 Thread Geoffrey Knutzen
Do you have any software like this that you could recommend? I have long wanted something that could do this -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Erik Beeson Sent: Monday, April 02, 2007 3:43 PM To: jquery-en@googlegroups.com Subject:

[jQuery] id or class

2007-04-02 Thread Geoffrey Knutzen
I have the option of naming a few containers using either classes or ids. It is assured that there will only be 1 instance of one of these containers on any page. Is it better to name them with a class or an id? Is there any speed benefit from using an id? These containers will be accessed