[jQuery] Autoselect specific checkboxes based on select dropdown

2007-11-01 Thread Andy Matthews
('arr'+option); // loop over the array for (o=0;o curArr.length; o++) { // check every checkbox whose value is in this array $('input[value=' + curArr[o] + ']').attr('checked','checked'); } } }); Andy Matthews Senior

[jQuery] Re: limit to only jpeg when file upload

2007-10-31 Thread Andy Matthews
You could split on ., then check last index of the resulting array: $('#file').val().split('.').slice(-1); should return jpg, gif, etc. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, October 31, 2007 10:32

[jQuery] Re: Sticky Footer

2007-10-31 Thread Andy Matthews
What code are you using for your CSS? There shouldn't need to be a solution. CSS: #footer { position: absolute; height: 50px; width: 300px; bottom: 0px; left: 10px; } -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]

[jQuery] Re: Get div

2007-10-30 Thread Andy Matthews
You can also get a div by it's tag type: $('div') // gets all divs. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard D. Worth Sent: Tuesday, October 30, 2007 8:41 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Get div You can use the css id

[jQuery] Toggle all checkboxes, best way?

2007-10-30 Thread Andy Matthews
(){ // toggle me on $checkboxes.each(function(){ $(this).attr('checked','checked'); }); return false; },function(){ $checkboxes.each(function(){ $(this).removeAttr('checked'); }); }); Andy Matthews Senior ColdFusion Developer Office

[jQuery] Re: [INTERESTING PLUGIN] Wait plugin

2007-10-30 Thread Andy Matthews
I think that something like this is a good candidate for the core. There's so many requests and things for how can I pause my code, etc. I can't see this being all that large in size. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tane Piper

[jQuery] How to create a plugin?

2007-10-29 Thread Andy Matthews
I've got a good idea for a fun plugin, but I'm not sure how to proceed. Is there a tutorial on how to create a jQuery plugin? Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED

[jQuery] Re: How to create a plugin?

2007-10-29 Thread Andy Matthews
Subject: [jQuery] Re: How to create a plugin? Hi Andy, This page is a good place to start: http://docs.jquery.com/Plugins/Authoring --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 29, 2007, at 12:35 PM, Andy Matthews wrote: I've got a good

[jQuery] Re: Best regex for this, getting software version numbers

2007-10-26 Thread Andy Matthews
, and '.?' will match something else. Just in case you are interested, you can achieve the same using: s.substring( 0, s.indexOf( '.' ,s.indexOf('.')+1 )); Ariel Flesler On Oct 25, 10:05 pm, Andy Matthews [EMAIL PROTECTED] wrote: That's better than mine (or at least shorter). Thanks! _ From

[jQuery] Re: jQuery 1.2 benchmark

2007-10-26 Thread Andy Matthews
Never mind...IE for some reason didn't show the legend colors at the bottom. I ran the test in FF and saw the colors. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Friday, October 26, 2007 11:30 AM To: jquery-en

[jQuery] Re: jQuery 1.2 benchmark

2007-10-26 Thread Andy Matthews
Can someone simply explain what the colors indicate for any specific row? Red? Orange? Green? Grey? Black? Also, in IE7, these are the results I got (for what it's worth): Dojo query 0.9: 1020 jQuery 1.2: 1350 Mootools r887: 2525

[jQuery] Re: Jquery 1.2 API

2007-10-26 Thread Andy Matthews
The problem with the docs version is that it's not at all user-friendly. It's difficult to find what you're looking for, you're forced to make multiple clicks, and those tabs (while a great UI element for apps), is not a good choice for documentation set up like this. The simple, alphabetized

[jQuery] Best regex for this, getting software version numbers

2007-10-25 Thread Andy Matthews
any ideas? 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/ atte6357.bmp

[jQuery] Re: Best regex for this, getting software version numbers

2007-10-25 Thread Andy Matthews
I came up with this: ([a-zA-Z0-9 !]+).?([a-zA-Z0-9]+) Is there a better way to do this? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, October 25, 2007 4:32 PM To: jquery-en@googlegroups.com Subject: [jQuery] Best regex

[jQuery] Re: Best regex for this, getting software version numbers

2007-10-25 Thread Andy Matthews
. Also include examples of the edge cases. (Second period? Where?) -Mike _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, October 25, 2007 2:32 PM To: jquery-en@googlegroups.com Subject: [jQuery] Best regex for this, getting

[jQuery] Re: Best regex for this, getting software version numbers

2007-10-25 Thread Andy Matthews
numbers Call me stupid. You did provide exactly the information I was asking for in my other message, I was just not paying close enough attention. D'oh! You could probably simplify the RE to this: ([^.]+).?[^.]+ -Mike _ From: Andy Matthews I came up with this: ([a-zA-Z0-9

[jQuery] Re: CSS image replacement problem

2007-10-24 Thread Andy Matthews
I'm guessing you've got CSS to back this up? Are your pages being created dynamically? Why not just change the image using server side code? If you do want to do it this way, then it's because your reference is wrong. Javascript uses camelCase attribute names. So to reference background-image,

[jQuery] Re: help - compare 3 lists, get the largest number of items...

2007-10-24 Thread Andy Matthews
This will give you the highest val without having to loop over the array: var arr = new Array(6) arr[0] = 10 arr[1] = 5 arr[2] = 40 arr[3] = 25 arr[4] = 1000 arr[5] = 1 arr[6] = 1001 var largest = arr.sort(function(a,b){return a - b}).slice(-1) -Original Message- From:

[jQuery] Re: Demos of UI and IE7

2007-10-23 Thread Andy Matthews
That must be your version of IE. I also have IE 7 and all of the demos that I've tried so far work just fine. Do you have JS turned off, or your security settings too high? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent:

[jQuery] Re: Minified jQuery?

2007-10-23 Thread Andy Matthews
It's my opinion that wording needs to be changed on the front page. That's been the source of so much confusion on this list, not to mention the people who never even post about it. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bil Corry

[jQuery] Re: How to count characters

2007-10-22 Thread Andy Matthews
If you just want a total (at any one point) of how many characters are in the field, then this should work: $('#id_Message').val().length; -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Johny Sent: Monday, October 22, 2007 12:25 PM To: jQuery

[jQuery] Re: AjaxCFC + jQuery tutorial: part 2

2007-10-19 Thread Andy Matthews
I'll forgive your lateness if you post the link. :) andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chris Jordan Sent: Thursday, October 18, 2007 11:35 PM To: jQuery Group Subject: [jQuery] AjaxCFC + jQuery tutorial: part 2 I realize that this is

[jQuery] Re: Unsubscribe

2007-10-19 Thread Andy Matthews
Your best bet is to visit Google Groups and do it that way: http://groups.google.com _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Anthony Coy Sent: Friday, October 19, 2007 9:00 AM To: jquery-en@googlegroups.com Subject: [jQuery] Unsubscribe Hello,

[jQuery] Re: binding dynamically inserted DOM elements

2007-10-19 Thread Andy Matthews
Yep... There's another plugin called LiveQuery. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Flesler Sent: Friday, October 19, 2007 7:20 AM To: jQuery (English) Subject: [jQuery] Re: binding dynamically inserted DOM elements are there

[jQuery] 2007 Web Design Survey

2007-10-18 Thread Andy Matthews
Discuss amongst yourselves. http://alistapart.com/articles/2007surveyresults/ Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED] www.dealerskins.com att1c1c1.bmp

[jQuery] Create link around email anywhere on page?

2007-10-18 Thread Andy Matthews
the page and make a mailto link out of any string which contains an @ symbol. Does anyone have something like this already, or might have suggestions as to where to start with writing it myself? Andy Matthews Senior ColdFusion Developer Office

[jQuery] Re: Create link around email anywhere on page?

2007-10-18 Thread Andy Matthews
PROTECTED]/a, infrared extended cable prototype feedback, software, encapsulated port element technician development logistically a href=mailto:[EMAIL PROTECTED][EMAIL PROTECTED]/a . _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday

[jQuery] Re: Create link around email anywhere on page?

2007-10-18 Thread Andy Matthews
(/[\.,]$/,''); alert(final); } } }); _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, October 18, 2007 10:29 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Create link around email anywhere on page? Just to clarify, I'm

[jQuery] Re: Create link around email anywhere on page?

2007-10-18 Thread Andy Matthews
\:$1$1\/a') $('body').html(modMarkup); Hope that helps. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 18, 2007, at 12:04 PM, Andy Matthews wrote: This is what I've got so far. I've got the individual strings isolated, but I'm not really sure how

[jQuery] Re: Create link around email anywhere on page?

2007-10-18 Thread Andy Matthews
(modMarkup); Hope that helps. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Oct 18, 2007, at 12:04 PM, Andy Matthews wrote: This is what I've got so far. I've got the individual strings isolated, but I'm not really sure how to them into the page where

[jQuery] Re: [NEWS] Humanized Messages

2007-10-17 Thread Andy Matthews
That's fairly nice. I like the message log at the bottom. Nice touch. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeferson Koslowski Sent: Tuesday, October 16, 2007 5:09 PM To: jquery-en@googlegroups.com Subject: [jQuery] [NEWS] Humanized Messages Found a

[jQuery] Re: [NEWS] Humanized Messages

2007-10-17 Thread Andy Matthews
an interesting app, but I'm not sure what the practical applications may be. ??? Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Wednesday, October 17, 2007 9:12 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [NEWS] Humanized Messages

[jQuery] Re: creating drop down menus with JQuery?

2007-10-16 Thread Andy Matthews
Superfish? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, October 15, 2007 5:13 PM To: jQuery (English) Subject: [jQuery] creating drop down menus with JQuery? Hi, Is there a plug-in that allows for menu

[jQuery] Re: Can't understand a Jquery statement

2007-10-16 Thread Andy Matthews
// creates a new, empty jQueru object $( // create a new jQuery object using virtual-sensor // as the selector, with 'data' as the context // and it returns the ith record in that query into // an array. $(virtual-sensor,data).get(i) // this gets all

[jQuery] Re: [NEWS] Coda-Slider Plugin

2007-10-15 Thread Andy Matthews
That's really nice. Works well in IE7/PC. Looks really nice too, -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Sunday, October 14, 2007 11:39 PM To: jQuery Discussion Subject: [jQuery] [NEWS] Coda-Slider Plugin Found a

[jQuery] Re: Announce: jqPuzzle - Customizable Sliding Puzzles with jQuery

2007-10-15 Thread Andy Matthews
That's REALLY well done. Plus the demo looks fantastic! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ralf Stoltze Sent: Sunday, October 14, 2007 11:25 AM To: jQuery (English) Subject: [jQuery] Announce: jqPuzzle - Customizable Sliding

[jQuery] Re: How to bind data to the ajax callback function?

2007-10-15 Thread Andy Matthews
Probably when Apple tried to get into the browser business too. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Wizzud Sent: Monday, October 15, 2007 12:24 PM To: jQuery (English) Subject: [jQuery] Re: How to bind data to the ajax callback

[jQuery] Re: JQuery Cycle Plugin

2007-10-12 Thread Andy Matthews
Never mind. I see now that it can. I just hadn't gotten to that page. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Friday, October 12, 2007 8:40 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: JQuery Cycle Plugin

[jQuery] Re: JQuery Cycle Plugin

2007-10-12 Thread Andy Matthews
Nice one. Thanks Karl. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Friday, October 12, 2007 8:56 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: JQuery Cycle Plugin On Oct 12, 2007, at 9:39 AM, Andy Matthews

[jQuery] Re: JQuery Cycle Plugin

2007-10-12 Thread Andy Matthews
Just out of curiosity, does this plugin do text to, or just images? Could it be wired up to do a div instead of an image? andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of MikeR Sent: Thursday, October 11, 2007 10:17 PM To: jQuery

[jQuery] Re: $ is not a function

2007-10-11 Thread Andy Matthews
One thing that also helps is to put an alert message just inside the document.ready call and comment everything else out. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joel Birch Sent: Wednesday, October 10, 2007 10:29 PM To:

[jQuery] Re: jQuery object equality

2007-10-11 Thread Andy Matthews
I suppose that maybe you could do a .each() over the jQuery object and test it that way. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Adrian Lynch Sent: Thursday, October 11, 2007 7:15 AM To: jQuery (English) Subject: [jQuery] jQuery object

[jQuery] Re: Flash is stealing the click event from jQuery

2007-10-11 Thread Andy Matthews
Flash should only be able to steal the event while your cursor is inside the plugin area. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of pixelwizzard Sent: Thursday, October 11, 2007 10:27 AM To: jQuery (English) Subject: [jQuery] Flash is

[jQuery] Re: How to clear setTimeout?

2007-10-10 Thread Andy Matthews
Since you're setting the value of upd to a function containing the setTimeout, you should be able to just delete upd; -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sean O Sent: Wednesday, October 10, 2007 10:39 AM To:

[jQuery] Re: Rotate an Image 90 Degrees with jquery-rotate plugin

2007-10-09 Thread Andy Matthews
No demo? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cfdvlpr Sent: Monday, October 08, 2007 5:12 PM To: jQuery (English) Cc: jquery-rotate Subject: [jQuery] Rotate an Image 90 Degrees with jquery-rotate plugin I started a rather lengthy

[jQuery] Re: animating multiple items at the same time

2007-10-09 Thread Andy Matthews
Simplest way might be to assign a class to each of them. This way you can reference them individually by ID or as part of a group by classname. Or put them all in a parent container and reference them with child selectors: $('#container div') andy -Original Message- From:

[jQuery] Re: Selector with Pipe (|) character not working

2007-10-08 Thread Andy Matthews
thanks ..really appreciate your help On 10/5/07, Andy Matthews [EMAIL PROTECTED] wrote: Sure thing. The HTML spec found here: http://www.w3.org/TR/html401/types.html#type-name http://www.w3.org/TR/html401/types.html#type-name Says this: ID and NAME tokens must begin with a letter ([A-Za-z

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-08 Thread Andy Matthews
Still looking to see if this is possible. My solution (not very elegant) was to replace paragraph tags with br / tags, then split on the br / tag like so: html head title/title /head body br /br / this is the first paragraph... br /br / this is the second

[jQuery] Re: Replicating Prototype lightbox with jQuery

2007-10-08 Thread Andy Matthews
Someone JUST posted a link to their direct jQuery Lightbox conversion. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Michael Price Sent: Monday, October 08, 2007 9:16 AM To: jquery-en@googlegroups.com Subject: [jQuery] Replicating Prototype

[jQuery] Re: Replicating Prototype lightbox with jQuery

2007-10-08 Thread Andy Matthews
:[EMAIL PROTECTED] On Behalf Of Michael Price Sent: Monday, October 08, 2007 9:29 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Replicating Prototype lightbox with jQuery Andy Matthews wrote: Someone JUST posted a link to their direct jQuery Lightbox conversion. Which is exactly the one I

[jQuery] Re: Replicating Prototype lightbox with jQuery

2007-10-08 Thread Andy Matthews
: Replicating Prototype lightbox with jQuery Andy Matthews wrote: Hey Michael...I hope you didn't take offense at my comment. I wasn't try ing to be rude. I was just surprised that you asked that question right after someone posted the answer. I just thought it was a really fun coincidence

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-08 Thread Andy Matthews
the data is in something you can get it all again the same way: $('#someId').find('p') or $(#someId p) On Oct 7, 9:30 pm, Andy Matthews [EMAIL PROTECTED] wrote: Just a clarification...I really just want to be able to pass in a string of text, from any source, and create a valid

[jQuery] Re: Code review: 1 problem each in IE and FF

2007-10-08 Thread Andy Matthews
[mailto:[EMAIL PROTECTED] On Behalf Of R. Rajesh Jeba Anbiah Sent: Monday, October 08, 2007 11:51 AM To: jQuery (English) Subject: [jQuery] Re: Code review: 1 problem each in IE and FF On Oct 8, 8:43 am, Andy Matthews [EMAIL PROTECTED] wrote: I was just working on a quick little project to utilize

[jQuery] HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Andy Matthews
I'm building a little app that will read in a page of static HTML. I'd like to take the string that's returned from the get() call and parse through it, dumping only the paragraphs into a jQuery object with a length of 40. What's the best approach to this?

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Andy Matthews
into a jQuery object. On Oct 7, 7:46 pm, Andy Matthews [EMAIL PROTECTED] wrote: I'm building a little app that will read in a page of static HTML. I'd like to take the string that's returned from the get() call and parse through it, dumping only the paragraphs into a jQuery object with a length

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Andy Matthews
:) It's filler text. You've probably seen the fake Latin text lorem Ipsum It's just meant to be text put into a text box or whatever to take up visual space. On Oct 7, 9:39 pm, Christopher Jordan [EMAIL PROTECTED] wrote: dude... what the hell is that! LOL! :o) On 10/7/07, Andy Matthews

[jQuery] Re: HTML returned from GET: What's the best solution to this issue?

2007-10-07 Thread Andy Matthews
Here it is: http://www.commadelimited.com/code/fillertext/ On Oct 7, 9:49 pm, Christopher Jordan [EMAIL PROTECTED] wrote: Oh... okay. I was thinkin' I'd have to see whatever site was going to use that content! :o) On 10/7/07, Andy Matthews [EMAIL PROTECTED] wrote: :) It's filler

[jQuery] Code review: 1 problem each in IE and FF

2007-10-07 Thread Andy Matthews
I was just working on a quick little project to utilize some gibberish text I've had laying around: http://www.commadelimited.com/code/fillertext/ It's a simple tool to generate filler text. You select a number, a style, then hit submit. It loads in some external HTML, then displays your

[jQuery] Re: [Site Submission]: nbc.com

2007-10-05 Thread Andy Matthews
Wow... That's got to be a killer feeling dude. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joel Birch Sent: Thursday, October 04, 2007 9:41 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [Site Submission]: nbc.com On 10/5/07,

[jQuery] Re: [Site Submission]: nbc.com

2007-10-05 Thread Andy Matthews
You should contact their web department and ask if you can use their menu as an example on your Superfish site. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joel Birch Sent: Thursday, October 04, 2007 10:34 PM To: jquery-en@googlegroups.com

[jQuery] Re: [PREVIEW] another future grid: jquery.KIKEgrid alpha...

2007-10-05 Thread Andy Matthews
Page not found -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Enrique Meléndez Estrada Sent: Friday, October 05, 2007 6:10 AM To: jquery-en@googlegroups.com Subject: [jQuery] [PREVIEW] another future grid: jquery.KIKEgrid alpha...

[jQuery] Re: Loading image with $.get()?

2007-10-05 Thread Andy Matthews
That was one of the things I considered trying. I'd rather not do that if I can help it. For now, I'm just placing an empty img tag inside my target div, then changing the src of that onClick. It works well. I'm going to change up the appearance and functionality, but here's my workup for now:

[jQuery] Re: Selector with Pipe (|) character not working

2007-10-05 Thread Andy Matthews
I'd suggest not using the pipe as part of your ID or class names. Try using a dash - or underscore, then split on those. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Richard D. Worth Sent: Friday, October 05, 2007 9:07 AM To: jquery-en@googlegroups.com

[jQuery] Re: Selector with Pipe (|) character not working

2007-10-05 Thread Andy Matthews
: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Abubakar Saddique Sent: Friday, October 05, 2007 11:40 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Selector with Pipe (|) character not working may i ask why not pipes? On 10/5/07, Andy Matthews [EMAIL PROTECTED] wrote

[jQuery] Re: Packed version of BlockUI?

2007-10-04 Thread Andy Matthews
PROTECTED] On Behalf Of Steve Brownlee Sent: Wednesday, October 03, 2007 10:33 AM To: jQuery (English) Subject: [jQuery] Re: Packed version of BlockUI? Andy, check out jqModal http://dev.iceburg.net/jquery/jqModal/ On Oct 3, 10:01 am, Andy Matthews [EMAIL PROTECTED] wrote: I'm in need of a simple

[jQuery] Re: [NEWS] Cool sitemap code

2007-10-04 Thread Andy Matthews
What?!? It doesn't build the sitemap list FOR you? Screw that! Just kidding. That's a NICE little bit of code. VERY sweet. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Thursday, October 04, 2007 2:20 PM To: jQuery Discussion

[jQuery] Re: Cool sitemap code

2007-10-04 Thread Andy Matthews
It's just a set of UL and LI tags. I'm sure you could put any code you like in there. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ty Sent: Thursday, October 04, 2007 2:33 PM To: jQuery (English) Subject: [jQuery] Re: Cool sitemap code

[jQuery] Re: Slide up/down bug with table data in IE7

2007-10-03 Thread Andy Matthews
in my app. If you're wanting to slide up and down the entire table, try wrapping a div around it and slide the div. This worked for me when I needed to show and hide entire tables. On Oct 2, 4:51 pm, Andy Matthews [EMAIL PROTECTED] wrote: I have a module which contains a table of information. When

[jQuery] Packed version of BlockUI?

2007-10-03 Thread Andy Matthews
I'm in need of a simple page overlay, which I'll be using to display help messages. I found BlockUI, but it's 15k. Is there a packed version of it, or a simpler version that just allows for a page overlay? Andy Matthews Senior ColdFusion Developer Office

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Andy Matthews
If anyone sends you something offlist, please post it back here. I'm also VERY interested in learning this type of development. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jack Killpatrick Sent: Tuesday, October 02, 2007 11:13 AM To:

[jQuery] Re: jquery + adobe air: getting started?

2007-10-02 Thread Andy Matthews
or HTML/JavaScript. - jake On 10/2/07, Andy Matthews [EMAIL PROTECTED] wrote: If anyone sends you something offlist, please post it back here. I'm also VERY interested in learning this type of development. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED

[jQuery] Re: why is jquery-1.2.1.min.js 45.3KB and not 14KB

2007-10-02 Thread Andy Matthews
There's a link to gzip instructions right next to the download link for that file. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, October 02, 2007 12:47 PM To: jQuery (English) Subject: [jQuery] Re: why is

[jQuery] Slide up/down bug with table data in IE7

2007-10-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: Home Page ui.jquery.com

2007-10-01 Thread Andy Matthews
Ight... It's a 453k PNG file. Not to mention that it's only being reduced by 2/3. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of phobis Sent: Sunday, September 30, 2007 2:32 PM To: jQuery (English) Subject: [jQuery] Home Page ui.jquery.com

[jQuery] Re: Amazing new navigation technology!

2007-09-28 Thread Andy Matthews
That's a trick question. All olives taste disgusting! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of voltron Sent: Friday, September 28, 2007 5:12 AM To: jQuery (English) Subject: [jQuery] Re: Amazing new navigation technology! This made me

[jQuery] Re: When will the API be updated for 1.2.1?

2007-09-28 Thread Andy Matthews
to at least get the core docs into XML. -- Brandon Aaron On 9/27/07, Andy Matthews [EMAIL PROTECTED] wrote: I use this: http://jquery.com/api/ all the time because it's the simplest, easiest, reference for jQuery methods and behaviours. But it still lists it's version as 1.1.2. Are there plans

[jQuery] SITE: jQuery spotted in the wild

2007-09-28 Thread Andy Matthews
A followed a link on the PVP and Penny-Arcade websites to a fun site for The Office. Turns out they're using jQuery: http://www.dundermifflininfinity.com/ Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax

[jQuery] Re: SITE: jQuery spotted in the wild

2007-09-28 Thread Andy Matthews
By the way... It's a site put put out by NBC. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Friday, September 28, 2007 3:43 PM To: [jQuery] Subject: [jQuery] SITE: jQuery spotted in the wild A followed a link on the PVP and Penny-Arcade

[jQuery] When will the API be updated for 1.2.1?

2007-09-27 Thread Andy Matthews
(on the jQuery site at least) for a straight up reference. I'm not talking about the fluffy examples found in the wiki area, but just a terse explanation of the method, it's parameters, and how to use it. Andy Matthews Senior ColdFusion Developer Office

[jQuery] Attr calls on jQuery object with more than one element?

2007-09-27 Thread Andy Matthews
basically need to get the rel attribute of all elements which have a specific class for use further down the codebase. Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 [EMAIL PROTECTED

[jQuery] Re: Attr calls on jQuery object with more than one element?

2007-09-27 Thread Andy Matthews
it. Ultimately, you can do: var $selected = Array(); $('.selected').each(function(){ $selected.push($(this).attr('rel')); }); On 9/27/07, Andy Matthews [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: If I wanted to get the rel values for all elements which match a jQuery call, how would I

[jQuery] Re: input type text toUpperCase() jquery question

2007-09-26 Thread Andy Matthews
Why would you even want to use Javascript for this? Just use CSS: input { text-decoration: uppercase; } _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Frank Tudor Sent: Tuesday, September 25, 2007 12:30 PM To: jQuery (English) Subject: [jQuery] Re: input

[jQuery] Re: $.ajax ?

2007-09-26 Thread Andy Matthews
The .ajax() method is built into jQuery. So as long as you have the jQuery library, you're good to go. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Danjojo Sent: Tuesday, September 25, 2007 6:52 AM To: jQuery (English) Subject: [jQuery]

[jQuery] Re: g has no properties?

2007-09-26 Thread Andy Matthews
As an aside, you might consider streamlining your code a little. Instead of having one method for each image, just do something like this: img src=images/originalimage.jpg rel=images/cylinder.jpg class=swapImages / img src=images/originalimage_02.jpg rel=images/mgp_swap.jpg class=swapImages /

[jQuery] Re: g has no properties?

2007-09-26 Thread Andy Matthews
Oh... I just thought of something. The hover method is actually supposed to have two functions built into it. One for over, and the other for out. I wonder if that's why you're getting the error. Should look like this: $(.swapImages).hover(function() { var newSRC = $(this).attr(rel);

[jQuery] Building my own datepicket - limting clicks to only two?

2007-09-26 Thread Andy Matthews
to unselect one of the days, or load the date range. How might I go about doing this? 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: input type text toUpperCase() jquery question

2007-09-26 Thread Andy Matthews
toUpperCase() jquery question omgosh.. I did not even know CSS could do that! Is that CSS-2? or -3? On Sep 26, 9:18 am, Andy Matthews [EMAIL PROTECTED] wrote: Why would you even want to use Javascript for this? Just use CSS: input { text-decoration: uppercase; } _ From: jquery-en

[jQuery] Re: input type text toUpperCase() jquery question

2007-09-26 Thread Andy Matthews
www.englishrules.com www.learningjquery.com On Sep 26, 2007, at 9:32 AM, Danjojo wrote: omgosh.. I did not even know CSS could do that! Is that CSS-2? or -3? On Sep 26, 9:18 am, Andy Matthews [EMAIL PROTECTED] wrote: Why would you even want to use Javascript for this? Just use CSS: input { text

[jQuery] Re: Building my own datepicket - limting clicks to only two?

2007-09-26 Thread Andy Matthews
code follows): if ( clicked day is off $(.onclass).size() = 2 ) { return false; } -- Josh - Original Message - From: Andy Matthews mailto:[EMAIL PROTECTED] To: [jQuery] mailto:jquery-en@googlegroups.com Sent: Wednesday, September 26, 2007 6:46 AM Subject: [jQuery] Building my

[jQuery] Re: Event Normalization Question

2007-09-20 Thread Andy Matthews
Since each of those area tags has it's own unique set of data, you'd probably need to assign some unique identifier to it. Take just one, area id=US-MI-42 shape=poly coords=566,68, 569,72 href=# by adding an id to it, you could do this: $('area').each(function(){ // a shortcut variable

[jQuery] Re: Tag Cloud

2007-09-20 Thread Andy Matthews
How would jQuery know which string was the most important and which was the least? What would the div contain? This could be done if jQuery had enough info to pull from. But if all your code is written in jQuery, then why not just hard code the tag cloud? _ From:

[jQuery] Re: Tag Cloud

2007-09-20 Thread Andy Matthews
Ooooh... That's TONS better than the crappy version I just wrote. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bruce MacKay Sent: Thursday, September 20, 2007 10:29 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Tag Cloud

[jQuery] Re: NEWBIE QUESTION: Catch Select event

2007-09-20 Thread Andy Matthews
I believe you'd want the change handler. $(select).change(function() { //do some stuff here... )}; -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of hobbit Sent: Thursday, September 20, 2007 1:22 PM To: jQuery (English) Subject: [jQuery]

[jQuery] Re: Now, what does this *really* mean?

2007-09-19 Thread Andy Matthews
I personally wouldn't suggest using GoDaddy for Coldfusion hosting. I recommended them to a client and was immediately sorry that I did. Their site crashed on a regular basis. I've since moved them over to GearHost.com (I personally hosted with GH for over 5 years). andy _ From:

[jQuery] Re: Selecting relative or absolute positioned elements

2007-09-19 Thread Andy Matthews
can't seem to get this code below to work. http://www.commadot.com/jquery/selectorNot.php Glen On 9/18/07, Andy Matthews [EMAIL PROTECTED] wrote: Maybe something like this: $('#test').children().filter(function(index) { return $(div, this).css('position') == 'relative'; }) _ From

[jQuery] Re: ANNOUNCE: Meijer.com launches -- using jQuery

2007-09-19 Thread Andy Matthews
That's cool. It's a very clean, well done site. What specifically is jQuery-fied? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giant Jam Sandwich Sent: Wednesday, September 19, 2007 7:03 AM To: jQuery (English) Subject: [jQuery] ANNOUNCE:

[jQuery] Re: Spolsky's Strategy Letter VI

2007-09-19 Thread Andy Matthews
LOL You could spend six months rewriting your inner loops in Assembler, or take six months off to play drums in a rock and roll band, and in either case, your program would run faster. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bil

[jQuery] Re: PERFORMANCE TIP: removeClass()

2007-09-19 Thread Andy Matthews
I might argue that if you're having to add/remove 15 classes, that your time could be better spent optimizing your display code. andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Sharp Sent: Wednesday, September 19, 2007 11:55 AM To:

[jQuery] Re: PERFORMANCE TIP: removeClass()

2007-09-19 Thread Andy Matthews
On Vista at least. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephan Beal Sent: Wednesday, September 19, 2007 12:31 PM To: jQuery (English) Subject: [jQuery] Re: PERFORMANCE TIP: removeClass() On Sep 19, 6:55 pm, Jonathan Sharp [EMAIL

[jQuery] Re: Selecting relative or absolute positioned elements

2007-09-18 Thread Andy Matthews
Maybe something like this: $('#test').children().filter(function(index) { return $(div, this).css('position') == 'relative'; }) _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Geoffrey Knutzen Sent: Tuesday, September 18, 2007 3:32 PM To:

<    1   2   3   4   5   6   7   8   9   >