[jQuery] UPDATE: code review, suggestions for condensing / reuse?

2007-04-03 Thread Andy Matthews
suggestions you feel like making would be welcomed. Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com

[jQuery] Re: UPDATE: code review, suggestions for condensing / reuse?

2007-04-03 Thread Andy Matthews
a little. :) -- Brandon Aaron On 4/3/07, Andy Matthews [EMAIL PROTECTED] wrote: I've made some additions and updates to the code I posted last week: http://www.commadelimited.com/uploads/psychic/ I wondered if you all would mind looking over it to see if it can be improved. I've got

[jQuery] Test post from outlook

2007-04-03 Thread Andy Matthews
Please ignore. Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com/ dealerskinslogo.bmp Description: Windows bitmap

[jQuery] Coldfusion: using $.get() to directly call a CFC living outside of the webroot

2007-04-05 Thread Andy Matthews
(not the one above): apps.cfcs.theCFCinQuestion Is there any way to call against that CFC directly instead of having to use a middle page? Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL

[jQuery] Re: Coldfusion: using $.get() to directly call a CFC living outside of the webroot

2007-04-05 Thread Andy Matthews
- Original Message - From: Andy Matthews mailto:[EMAIL PROTECTED] To: jquery-en@googlegroups.com Sent: Thursday, April 05, 2007 11:16 AM Subject: [jQuery] Coldfusion: using $.get() to directly call a CFC living outside of the webroot Right now m JS looks like this: $.get(psychic.cfm

[jQuery] Re: I'm going nutz...

2007-04-06 Thread Andy Matthews
Are you talking about viewing source in IE vs FF? Because if you perform an action with jQuery, then view source in IE, you'll NEVER see the changes in the code. However, using the View Generated Source option in FF's developer toolbar allows you to see changes made using javascript. Or are you

[jQuery] Re: Getting all labels

2007-04-06 Thread Andy Matthews
Maybe Var myArr = []; $('label').each( myArr.push($(this).attr('for')); ); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Buzzterrier Sent: Friday, April 06, 2007 2:13 PM To: jQuery (English) Subject: [jQuery] Getting all labels I

[jQuery] Re: Getting all labels

2007-04-06 Thread Andy Matthews
PROTECTED] On Behalf Of Andy Matthews Sent: Friday, April 06, 2007 2:27 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Getting all labels Maybe Var myArr = []; $('label').each( myArr.push($(this).attr('for')); ); -Original Message- From: jquery-en@googlegroups.com [mailto

[jQuery] Re: Stop pending AJAX processes?

2007-04-06 Thread Andy Matthews
a single ajaxcall when opening a accordation menu and splitting the returning result (using xml, json or whatever) and then put it on the right place? That would make the request quite few and still make the initial page load fast. //Kristinn On 4/6/07, Andy Matthews [EMAIL PROTECTED] wrote

[jQuery] Re: Getting option text from select

2007-04-09 Thread Andy Matthews
Check the archives. I asked the same question about 5 months ago. I can't recall what project it was for, but I know it worked. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Buzzterrier Sent: Monday, April 09, 2007 1:20 PM To: jQuery

[jQuery] Re: TableSorter question

2007-04-09 Thread Andy Matthews
There's an option for default sort. How is the data getting to the page? Is it hard-coded or the result of an SQL operation? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris W. Parker Sent: Monday, April 09, 2007 1:58 PM To:

[jQuery] Re: Simple selector question

2007-04-09 Thread Andy Matthews
$('table').attr('css','border-collapse') Maybe? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Knutzen Sent: Monday, April 09, 2007 3:27 PM To: jquery-en@googlegroups.com Subject: [jQuery] Simple selector question How would one

[jQuery] Re: Defining of a function

2007-04-12 Thread Andy Matthews
I don't know about Javascript, but in Flash, if you use the first method, you can place the function in any location in your code and it can be called from any location in your code. Using the second method, the function definition has to be placed before it's call. -Original Message-

[jQuery] Re: Defining of a function

2007-04-12 Thread Andy Matthews
That's a perfect write-up on this issue. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Thursday, April 12, 2007 11:27 AM To: [EMAIL PROTECTED] Subject: [jQuery] Re: Defining of a function Mike Alsup schrieb: The difference

[jQuery] Re: New to jQuery and struggling

2007-04-16 Thread Andy Matthews
You should be able to use jQuery inline, but you might want to ask yourself WHY you want to use it inline. The power of jQuery is that it can affect EVERY part of the document from just one spot. I'd recommend rethinking your code so as to remove the need for inline JS. _ From:

[jQuery] Re: New to jQuery and struggling

2007-04-16 Thread Andy Matthews
Sniff sniff... I'll just go play on the Prototype mailing list now. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: Monday, April 16, 2007 8:34 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: New to jQuery and

[jQuery] Re: Question about tablesorter plugin

2007-04-16 Thread Andy Matthews
Have you tried just recalling tableSorter() on that table? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, April 16, 2007 2:07 PM To: jquery-en@googlegroups.com Subject: [jQuery] Question about tablesorter plugin

[jQuery] Re: hasClass

2007-04-17 Thread Andy Matthews
Scott... www.jquery.com/api -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sauyet Sent: Tuesday, April 17, 2007 12:09 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: hasClass Geoffrey Knutzen wrote: How can I test if an

[jQuery] Re: Release: autocomplete 1.0 alpha

2007-04-17 Thread Andy Matthews
Dude... This plugin freaking rocks. It's so far ahead of what it was before. Great job you guys! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris W. Parker Sent: Tuesday, April 17, 2007 5:09 PM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: Best way to determine if a user has Javascript enabled?

2007-04-20 Thread Andy Matthews
Simple way to do it might be to use javascript itself to do a forward or something like that. I've seen people set up a meta refresh of 5 seconds in the header, then use javascript to do a location.href as soon as the page loads. If they have js, they get redirected immediately to page A, if they

[jQuery] Re: Best way to determine if a user has Javascript enabled?

2007-04-20 Thread Andy Matthews
One thing to point out about mine and Dan's suggestion is that your Seach engine ranking will take a hit if you use this method. Google penalizes sites who use redirects to other pages. Depending on why you need to check for JS, you might consider using this method only for portions of the site

[jQuery] Re: Using EXT with Jquery

2007-04-20 Thread Andy Matthews
Never mind. Checked it in FF. Pretty cool. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Eli Sent: Friday, April 20, 2007 8:37 AM To: jQuery (English) Subject: [jQuery] Re: Using EXT with Jquery Thanks all of you, especially Remy, I managed

[jQuery] Re: Best way to determine if a user has Javascript enabled?

2007-04-20 Thread Andy Matthews
Beat me to it. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Friday, April 20, 2007 8:19 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Best way to determine if a user has Javascript enabled? Simple way to do

[jQuery] Re: Retrieving information outside of $this

2007-04-20 Thread Andy Matthews
Ooops... This gets the latitude value: var lat = $(this).parent().parent().children('.editable').children('span').attr('name' ,'longitude').html(); Change it up to get longitude -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of SiCo Sent:

[jQuery] Re: Retrieving information outside of $this

2007-04-20 Thread Andy Matthews
Sorry for the loads of emails. Using your exact code setup, this is what I came up with: $('div.data a').click( function() { var lat = $(this).parent().parent().children('.editable').children('span').attr('name' ,'longitude').html(); alert(lat); return false; });

[jQuery] Re: Retrieving information outside of $this

2007-04-20 Thread Andy Matthews
To: jquery-en@googlegroups.com Subject: [jQuery] Re: Retrieving information outside of $this Andy Matthews schrieb: What?!?!? You can use html based pathing in jQuery? Why didn't someone tell me that?!? How come I get an error? Sure I can! ;P What kind of error?

[jQuery] Re: plugins page!!!!

2007-04-26 Thread Andy Matthews
I have to agree about the page refresh. There's not THAT many plugins that we shouldn't be able to read all of them in (just the name and maybe a one sentence description). Then click that to read the details. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]

[jQuery] Re: Update on new travel site

2007-04-26 Thread Andy Matthews
Ah...never mind. My connection dropped. The site looks awesome! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, April 26, 2007 8:38 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Update on new travel site

[jQuery] Re: Update on new travel site

2007-04-26 Thread Andy Matthews
@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, April 26, 2007 8:45 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Update on new travel site Ah...never mind. My connection dropped. The site looks awesome! -Original Message- From: jquery-en

[jQuery] Cascading Stylesheets presentation tonight

2007-04-26 Thread Andy Matthews
. -- DATE: April 26, 2007 TIME: 6:30 PM Presentation PRESENTATION: Andy Matthews (in person) on CSS CFM together: Alphabet Soup or Best Friends Forever? CSS CFM together: Alphabet Soup or Best Friends Forever? Combining the power of Coldfusion

[jQuery] Re: Cascading Stylesheets presentation tonight

2007-04-27 Thread Andy Matthews
@googlegroups.com Subject: [jQuery] Re: Cascading Stylesheets presentation tonight I'd definitely like to see the recording Andy so be sure to email me when its available. Rey Andy Matthews wrote: Yep... It went well last night. It was indeed recorded and I'll have the link to that recording

[jQuery] My CSS presentation - recorded via Adobe Connect

2007-04-28 Thread Andy Matthews
everyone likes it. Please feel free to give me feedback...this was my first time presenting. andy matthews founder | main man commadelimited dream | design | develop [EMAIL PROTECTED] www.commadelimited.com c: 615-414-5533 | h: 615-258-3634

[jQuery] Re: CFJS plugin

2007-05-01 Thread Andy Matthews
I don't know if the array bug is a bug or a feature. Coldfusion actually starts counting arrays at 1. So it's possible that could be intentional, although given that this is a javascript plugin, it's probably a bug. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: CFJS plugin

2007-05-02 Thread Andy Matthews
this is the right thing to do... but folks are welcome to disagree. :o) I'll be looking through the rest of the functions to see that they are also returning arrays whose indexes start with zero. Cheers, Chris Andy Matthews wrote: I don't know if the array bug is a bug or a feature. Coldfusion actually

[jQuery] $('#model').change( function() not working

2007-05-02 Thread Andy Matthews
]); }); } }); Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com/ dealerskinslogo.bmp

[jQuery] Re: Force the FIRST option to be selected in a select box.

2007-05-02 Thread Andy Matthews
for selection, although IIRC using the DOM I tihnk this should work (untested): var select = $(#select-id); select[0].selectedIndex = 0; Rob On 5/2/07, Andy Matthews [EMAIL PROTECTED] wrote: I've got two related select dropdowns. Makes: Honda, Ford, Acura, etc. Models: select a make first

[jQuery] Re: Force the FIRST option to be selected in a select box.

2007-05-02 Thread Andy Matthews
not sure off-hand how to use jQuery for selection, although IIRC using the DOM I tihnk this should work (untested): var select = $(#select-id); select[0].selectedIndex = 0; Rob On 5/2/07, Andy Matthews [EMAIL PROTECTED] wrote: I've got two related select dropdowns. Makes: Honda, Ford

[jQuery] Re: SWFObject.js, IE and the onChange handler

2007-05-03 Thread Andy Matthews
Dan... It's only happening in IE 6 7 And even then, not all the time (as I mentioned). It appears that my production code seems to be working correctly. Here's a few URLs for you all to preview: Here's an example of the code (working) on a page with no Flash content:

[jQuery] Re: I saw it somewhere...

2007-05-03 Thread Andy Matthews
It's called Autocomplete. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shelane Enos Sent: Thursday, May 03, 2007 4:32 PM To: jquery-en@googlegroups.com Subject: [jQuery] I saw it somewhere... For the last hour I have be scouring through

[jQuery] Pure Object/Embed solution via jQuery?

2007-05-04 Thread Andy Matthews
issue. I'm not talking about using jQuery to load in something else, I'm talking about a pure jQuery plugin which resolves this issue. Anyone? Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249

[jQuery] Re: Random Image Background

2007-05-04 Thread Andy Matthews
I'd create an array with image names. var randomImages = ['image_01','image_02','image_03',]; var rndNum = Math.floor(Math.random() * randomImages.length); The rest is fine. Then you just have to update the array and you're golden. _ From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] this is a test

2007-05-07 Thread Andy Matthews
Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com/ dealerskinslogo.bmp

[jQuery] Re: New patch release for CFJS

2007-05-08 Thread Andy Matthews
Might I suggest that instead of releasing a new version every few days, just wait and release every few weeks. That way you get less releasing. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Jordan Sent: Monday, May 07, 2007 6:46

[jQuery] Re: MooTools 1.1

2007-05-08 Thread Andy Matthews
Holy crap. Those demos are freaking awesome! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Tuesday, May 08, 2007 11:48 AM To: jquery-en@googlegroups.com Subject: [jQuery] MooTools 1.1 Moo Tools 1.1 is out. Check out these demos.

[jQuery] Re: Suggestion - A | B | C | - Navigation container

2007-05-11 Thread Andy Matthews
liduncan/li _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Friday, May 11, 2007 4:18 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Suggestion - A | B | C | - Navigation container This code gives you an arrary containing the first

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

2007-05-15 Thread Andy Matthews
. Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com/ dealerskinslogo.bmp

[jQuery] Thickbox fade in / out...is this possible?

2007-05-15 Thread Andy Matthews
: The large photos are crap right now as the client hasn't given me the larger sizes yet Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http

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

2007-05-15 Thread Andy Matthews
- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sauyet Sent: Tuesday, May 15, 2007 8:54 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Small delay in animate function - how can I fix it? Andy Matthews wrote: http://www.commadelimited.com/clients/haven/atkins

[jQuery] Re: chaining question

2007-05-16 Thread Andy Matthews
Do you have an online example of both methods? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bleen Sent: Wednesday, May 16, 2007 9:55 AM To: jQuery (English) Subject: [jQuery] chaining question If the function below (which is called in a

[jQuery] Re: $(document).ready(function() {

2007-05-21 Thread Andy Matthews
It can be included. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of SamCKayak Sent: Monday, May 21, 2007 2:52 PM To: jQuery (English) Subject: [jQuery] $(document).ready(function() { Can $(document).ready(function() { appear in an included

[jQuery] Javascript errors on site using jQuery

2007-05-22 Thread Andy Matthews
4.0 Transitional//EN Does anyone know why this is happening? Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com

[jQuery] Re: Javascript errors on site using jQuery

2007-05-22 Thread Andy Matthews
Of Andy Matthews Sent: Tuesday, May 22, 2007 9:50 AM To: jquery-en@googlegroups.com Subject: [jQuery] Javascript errors on site using jQuery My company uses this page to do some research work. http://vehix.dealerskins.com/ We just uploaded some new files that include the jQuery library. Now

[jQuery] Re: Conventional JS/DOM to jQuery conversion help

2007-05-23 Thread Andy Matthews
To access a form element by name: $('[EMAIL PROTECTED]) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cliff Sent: Wednesday, May 23, 2007 10:52 AM To: jQuery (English) Subject: [jQuery] Conventional JS/DOM to jQuery conversion help I am new

[jQuery] Boolean value for if an element exists

2007-05-23 Thread Andy Matthews
. Is there a way of assigning a boolean value using a jQuery call? Something like this maybe? var redlineExists = $('#redlineSelect'); Where if the element is there, then redlineExists would be true, and false if it did not? How might I do that? Andy Matthews

[jQuery] Re: Boolean value for if an element exists

2007-05-23 Thread Andy Matthews
= ($('#redlineSelect').size()) On May 23, 10:31 am, Andy Matthews [EMAIL PROTECTED] wrote: I've got some multiple dropdowns that I'm trying to conditionalize. Our designers can select one (or both) of two sets of code. I'd like to conditionalize my jQuery code so that if the redline dropdowns exist

[jQuery] Question about the context attribute of a jQuery call

2007-05-23 Thread Andy Matthews
some options here /select /form if I do a click function like so: $('#make','#redlineSelect').click( do something here) will that only apply to the make dropdown inside the redlineSelect form tag? Andy Matthews Senior Coldfusion Developer

[jQuery] Re: Question about the context attribute of a jQuery call

2007-05-23 Thread Andy Matthews
Looks like I answered my own question. Doesn't appear that this is possible. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Wednesday, May 23, 2007 1:01 PM To: jquery-en@googlegroups.com Subject: [jQuery] Question about the context attribute

[jQuery] Re: Question about the context attribute of a jQuery call

2007-05-23 Thread Andy Matthews
Right... I admit it's not the best, but I wanted to see about that possibility so as to change as little code as possible. I ended up giving each select it's own unique ID and of course that works just fine. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]

[jQuery] Re: off list RE: [jQuery] Re: What is up with the Coach Wei slam of jQuery?

2007-05-24 Thread Andy Matthews
I've always wondered about the backward facing trains. /me waits with baited breath for a reply. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris W. Parker Sent: Thursday, May 24, 2007 2:25 PM To: jquery-en@googlegroups.com Subject:

[jQuery] Safari, Thickbox 3 and rolling over images = glitch?

2007-05-24 Thread Andy Matthews
I don't run a Mac, or have access to one, so I'm asking you all for a little assistance please. A client running Safari had this to say about my implementation of Thickbox: When you roll over a certain area, mostly right on the outermost border of each picture, then the header blinks in and out

[jQuery] Re: Safari, Thickbox 3 and rolling over images = glitch?

2007-05-25 Thread Andy Matthews
= glitch? I can confirm your client's issue on Safari 2.0.4 (419.3). On 5/24/07, Andy Matthews [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: I don't run a Mac, or have access to one, so I'm asking you all for a little assistance please. A client running Safari had this to say about my

[jQuery] Re: Getting column value for a selected table row?

2007-05-25 Thread Andy Matthews
Damn...that's fantastic. We need to have more details on how to do things like this. The code I might have come up with for that would have been like 5 or 6 lines long at LEAST! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jake McGraw Sent: Friday, May 25,

[jQuery] Forcing a select box to select a specified option

2007-05-29 Thread Andy Matthews
but that doesn't work for some odd reason. So I'd like to default it to the first dropdown that has a value attribute. How would I go about that? $('#RedMakeSelect:first-child [EMAIL PROTECTED]') or something like that? Andy Matthews Senior Coldfusion Developer

[jQuery] Re: Forcing a select box to select a specified option

2007-05-30 Thread Andy Matthews
Hrm... That doesn't work. I think you might have misunderstood me though. I want to force the selected attribute of the second option element. I tried this too: $('#RedMakeSelect:first-child option:nth-child(1)').attr('selected','true'); And that didn't work either. -Original

[jQuery] Re: Forcing a select box to select a specified option

2007-05-30 Thread Andy Matthews
That did it Dan. Thanks! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: Wednesday, May 30, 2007 8:56 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Forcing a select box to select a specified option Andy,

[jQuery] Re: Quick javascript question (not jQuery)

2007-05-30 Thread Andy Matthews
If you find this out, let me know because I'd love to have similar functionality. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gordon Sent: Wednesday, May 30, 2007 9:27 AM To: jQuery (English) Subject: [jQuery] Quick javascript question (not

[jQuery] Coldfusion 8 Public Beta now available

2007-05-30 Thread Andy Matthews
/coldfusion8/ Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com/ dealerskinslogo.bmp

[jQuery] Re: Coldfusion 8 Public Beta now available

2007-05-30 Thread Andy Matthews
. On May 30, 10:51 am, Andy Matthews [EMAIL PROTECTED] wrote: For any of you that have been wanting to try Coldfusion, THIS is the email for you. Coldfusion 8 is going to be a HUGE release, the first with Adobe, and I predict that it will make major waves in the web development community

[jQuery] Getting the numeric value of the top attribute of an object

2007-06-04 Thread Andy Matthews
that I need? Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com/ dealerskinslogo.bmp

[jQuery] OT: Run PHP code inline on a Coldfusion page

2007-06-04 Thread Andy Matthews
code is pretty kick ass. I read that someone else has done the same thing for Ruby. Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com http://www.dealerskins.com

[jQuery] Re: Getting the numeric value of the top attribute of an object

2007-06-04 Thread Andy Matthews
, which can give exact placement. Glen On 6/4/07, Andy Matthews [EMAIL PROTECTED] wrote: I would like to dynamically get the numeric value for the top of an object. I'm using this code: var inventoryObj = $('#inventory'); inventoryObj.css('top'); But it just returns auto. 1) Am I using

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-04 Thread Andy Matthews
That's VERY nice. Wish the text was a little smaller. You have to scroll too much to get to the bottom of the list. Very well done though. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Monday, June 04, 2007 9:42 AM To:

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-04 Thread Andy Matthews
: NEWS: HTML entity lookup tool built in jQuery Thanks for picking this up guys. @Andy - I'll add an option over the next couple of days to compress the output - something that allows you to see more without having to scroll. On Jun 4, 3:48 pm, Andy Matthews [EMAIL PROTECTED] wrote: That's VERY

[jQuery] Re: NEWS: HTML entity lookup tool built in jQuery

2007-06-05 Thread Andy Matthews
/entity-lookup/ Cheers, Remy. On Jun 4, 6:00 pm, Andy Matthews [EMAIL PROTECTED] wrote: Right... More of a suggestion than a criticism Remy...it's a great idea, and extremely well implemented.

[jQuery] Re: Newbie: Superfish menu help

2007-06-05 Thread Andy Matthews
In IE 7 and FF2 for the PC, I get a JS error when I load that page. Looks like you might be missing a closing curly brace around line 21. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JLuther Sent: Tuesday, June 05, 2007 2:56 PM To: jQuery

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-08 Thread Andy Matthews
:( CF error: Security: The requested template has been denied access to ticc. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Friday, June 08, 2007 4:20 PM To: jQuery Discussion Subject: [jQuery] ANNOUNCE: Open Source Project

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-08 Thread Andy Matthews
... Andy Matthews wrote: :( CF error: Security: The requested template has been denied access to ticc. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Friday, June 08, 2007 4:20 PM To: jQuery Discussion Subject: [jQuery

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-08 Thread Andy Matthews
... Andy Matthews wrote: :( CF error: Security: The requested template has been denied access to ticc. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Friday, June 08, 2007 4:20 PM To: jQuery Discussion Subject: [jQuery

[jQuery] Re: ANNOUNCE: Open Source Project Tracker Using jQuery

2007-06-11 Thread Andy Matthews
all a heads up when its up and running. Rey Andy Matthews wrote: When you login. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Friday, June 08, 2007 4:48 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re

[jQuery] Re: vignet : another great jquery powered site

2007-06-11 Thread Andy Matthews
Nicely done site. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sam Sherlock Sent: Monday, June 11, 2007 11:27 AM To: jquery-en@googlegroups.com Subject: [jQuery] vignet : another great jquery powered site http://www.teamviget.com/ great work

[jQuery] Re: keycode javascript conversion to jquery

2007-06-11 Thread Andy Matthews
jQuery actually has built in key event handlers: http://jquery.com/api/ Click the K link at the top -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JimD Sent: Monday, June 11, 2007 11:48 AM To: jQuery (English) Subject: [jQuery] keycode

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Andy Matthews
I have SERIOUS, SERIOUS doubts that there are 18 million people using Safari. I doubt there are that many people using Macs to be perfectly honest. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sent: Monday, June 11, 2007 1:11 PM To:

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Andy Matthews
://www.fg-webdesign.de Andy Matthews wrote: I have SERIOUS, SERIOUS doubts that there are 18 million people using Safari. I doubt there are that many people using Macs to be perfectly honest. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sent: Monday, June

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Andy Matthews
far off. What's really going to be interesting is Apple has just expanded Safari to two new platforms, Windows and iPhone. This should expand Safari market share dramatically. --- Andy Matthews [EMAIL PROTECTED] wrote: I have SERIOUS, SERIOUS doubts that there are 18 million people using

[jQuery] Re: Macrumors running live udpates of WWDC

2007-06-11 Thread Andy Matthews
[mailto:[EMAIL PROTECTED] On Behalf Of Chris Scott Sent: Monday, June 11, 2007 3:16 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Macrumors running live udpates of WWDC Andy Matthews wrote: So 18 million INSTALLS of Safari, maybe. Just because a user has it on their system, doesn't mean

[jQuery] Re: IDEA: Plugin Registering

2007-06-11 Thread Andy Matthews
It's a great idea. Could also allow for a dynamic listing of sites using jQuery. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Monday, June 11, 2007 4:11 PM To: jquery-en@googlegroups.com Subject: [jQuery] IDEA: Plugin Registering I just had

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Andy Matthews
It's by the people who won the testing, so that makes it just a little suspect. This is probably just like the testing from about 6 months back in which the jQuery library was several versions older than the most recent. That said, here's what I got: IE 7.0.57/PC - prototype

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Andy Matthews
TestSuite Andy Matthews schrieb: It's by the people who won the testing, so that makes it just a little suspect. This is probably just like the testing from about 6 months back in which the jQuery library was several versions older than the most recent. That said, here's what I got: IE 7.0.57/PC

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Andy Matthews
Don't we have a plugin which might allay some of the speed concerns? I'm LOVING the fact that jQuery is 19k, BUT even if it were to bump up to 25k or 30k, it would STILL be the smallest overall library. And honestly, these days, people spend 100k just on one IMAGE, which doesn't even provide any

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Andy Matthews
Well said. That about sums it up for me. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Tuesday, June 12, 2007 11:08 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: SlickSpeed CSS Selector TestSuite This topic comes up every time a

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Andy Matthews
I would guess that most (at least a large percentage) of their target audience has broadband. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robert O'Rourke Sent: Tuesday, June 12, 2007 11:56 AM To: jquery-en@googlegroups.com Subject: [jQuery]

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-12 Thread Andy Matthews
Someone should let them know...that's just assinine. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Tuesday, June 12, 2007 4:26 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: SlickSpeed CSS Selector TestSuite Ok, Apple engineers are

[jQuery] Re: Why I can't access to a tag in a div

2007-06-12 Thread Andy Matthews
Your code is saying an A tag that has an id of response. To get a jQuery object containing all a tags inside that div, it should look like this: #response a That says any A tag inside a container with an id of response. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: Why I can't access to a tag in a div

2007-06-12 Thread Andy Matthews
Well, it depends. When you say that the content is generated dynamically, are you saying that it's generated by a server side language like ColdFusion or PHP? Or is it being generated by Javascript? If it's created by javascript, after the page is loaded, then you'll need to reassign the click

[jQuery] Re: Why I can't access to a tag in a div

2007-06-13 Thread Andy Matthews
I did the same thing once and it took me asking the list to get the answer. Now I know, and I'm able to pass it on to you. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Massimiliano Marini Sent: Tuesday, June 12, 2007 5:26 PM To:

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-13 Thread Andy Matthews
That's not a good example anyway. It's invalid because there can only be ONE unique ID per page. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Heimlich Sent: Tuesday, June 12, 2007 7:32 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: SlickSpeed

[jQuery] Re: SlickSpeed CSS Selector TestSuite

2007-06-13 Thread Andy Matthews
We'll expect something by the end of the day today. Get on that okay? ;) _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Wednesday, June 13, 2007 8:27 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: SlickSpeed CSS Selector

[jQuery] Re: follow up on real world speed test

2007-06-13 Thread Andy Matthews
That's a much better result, and more what I might expect. jQuery came in 3rd (1175) after Ext (585) and dojo (736). _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Wednesday, June 13, 2007 11:43 AM To: jquery-en Subject: [jQuery] follow

[jQuery] Re: follow up on real world speed test

2007-06-13 Thread Andy Matthews
You should leave prototype in though...it's one of the main contenders. If anything, I'd take out 1.1.2.dev. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Wednesday, June 13, 2007 1:49 PM To: jquery-en@googlegroups.com Subject: [jQuery]

[jQuery] Re: ANNOUNCE: Speed Tests Feedback

2007-06-13 Thread Andy Matthews
Sounds like he wants to GIVE hugs. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Wednesday, June 13, 2007 2:24 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: Speed Tests Feedback Chris, well said, sounds like you

  1   2   3   4   5   6   7   8   9   >