[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] 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: 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] 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] 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: select text for LI

2007-11-02 Thread Andy Matthews
never mind. I just ran a validate on that snippet of code and yours is the valid markup. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sawmac Sent: Friday, November 02, 2007 10:55 AM To: jQuery (English) Subject: [jQuery] select text for LI

[jQuery] Re: select text for LI

2007-11-02 Thread Andy Matthews
Isn't that invalid HTML? Should it be this instead? ul liindex.html/li liabout/li ul liindex.html/li limore.html/li /ul /ul -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sawmac Sent: Friday, November 02, 2007 10:55 AM To:

[jQuery] Re: SITE SUBMISSION: pvponline.com

2007-11-05 Thread Andy Matthews
That's pretty funny. Whomever designed this site isn't really thinking that smart. They're using jQuery AND Prototype. Most likely just using jQuery to be able to use Thickbox. Why not just use Lightbox then and save yourself the load of jQuery? andy -Original Message- From:

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread Andy Matthews
I'd have to agree. I can't see any practical reason why you'd need to display that much data on one page. Aside from the download, and rendering time, the performance of the browser with that much data in memory would be horrible. Scrolling, copying, etc. would all be severely affected. andy

[jQuery] Re: Can jquery do this?

2007-11-06 Thread Andy Matthews
Oooh...that's nice. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: Tuesday, November 06, 2007 1:18 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Can jquery do this? Marlyred, This contact form looks really

[jQuery] Re: Text finder in html

2007-11-06 Thread Andy Matthews
I wrote something exactly like this for a project. It's not 100% complete, but you're welcome to it. Maybe it'll help? // define the table var $table = $('#leadsTable tbody tr .leadName'); // the on keyDown event handler $('#filter').keyup(function(){ // get the current value of the

[jQuery] SITE: http://www.foodnetwork.com/

2007-11-06 Thread Andy Matthews
Don't know if this has already been posted or not, but it appears that FoodTV giant FoodNetwork.com is using jQuery (1.1.4): http://www.foodnetwork.com/ We're taking over people...we'll soon be reaching critical mass where businesses will be LOOKING for people who know jQuery! hip hip hooray.

[jQuery] Need help with the value of a Macbook

2007-11-07 Thread Andy Matthews
get away with a laptop that can run fast, can run Windows, and can be hooked up to a real monitor, then a laptop is okay. Amazon has this price listed for the machine: http://www.amazon.com/Apple-MacBook-MA700LL-Notebook-SuperDrive/dp/B000GABVO S Andy

[jQuery] Re: how to make links unclickable

2007-11-07 Thread Andy Matthews
Yes. return false won't make the link unclickable, but it will prevent the default action from occurring. You can do this to also remove the hand cursor: $(a).css('cursor','arrow').click(function(){ return false; }); -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Need help with the value of a Macbook

2007-11-07 Thread Andy Matthews
of a Macbook On Nov 7, 2007 1:24 PM, Andy Matthews [EMAIL PROTECTED] wrote: A co-worker of mine said that a friend of HIS is selling a Macbook. Since I know that's an Intel machine I was curious so I asked about the specs. Here's a spec list for the Late 2006 MacBooks: http://support.apple.com/specs

[jQuery] Re: liveQuery in jQuery core?

2007-11-08 Thread Andy Matthews
discussion that's been going on about this over the last week: http://groups.google.com/group/jquery-en/browse_thread/thread/f520b83381fb62 31 http://groups.google.com/group/jquery-en/browse_thread/thread/f520b83381fb6 231 - Richard On Nov 8, 2007 3:40 PM, Andy Matthews [EMAIL PROTECTED] wrote

[jQuery] liveQuery in jQuery core?

2007-11-08 Thread Andy Matthews
Did liveQuery ever get moved into the core? I can't find evidence of it in the docs 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: chainable ajax() - request

2007-11-09 Thread Andy Matthews
have you tried $(a).ajax(options); }); ? Seems to me like that should work. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alife Sent: Friday, November 09, 2007 8:17 AM To: jQuery (English) Subject: [jQuery] chainable ajax() - request

[jQuery] Re: invalid flag after regular expression ??

2007-11-09 Thread Andy Matthews
It's because of this chunk here: ul lia href=javascript: void(0 /div /td); id=link_archiveDraftsDrafts/a/li

[jQuery] SITE: http://www.bankofamerica.com/

2007-11-09 Thread Andy Matthews
HOLY CRAP! My wife was in our BoA account this evening and they had some nice AJA and JS based interaction going on. So I thought it would be interestting to see what they were using. Sure enough, good old jQuery, right there behind the scenes. That's amazing as jQuery is one of the biggest

[jQuery] Re: SITE: http://www.bankofamerica.com/

2007-11-12 Thread Andy Matthews
but nothing about JQuery stuff is on that website at the moment On Nov 10, 9:36 am, Andy Matthews [EMAIL PROTECTED] wrote: HOLY CRAP! My wife was in our BoA account this evening and they had some nice AJA and JS based interaction going on. So I thought it would be interestting to see what

[jQuery] Re: SITE: http://www.bankofamerica.com/

2007-11-12 Thread Andy Matthews
: SITE: http://www.bankofamerica.com/ Confirmed here too... logged into my account, jQuery 1.2.1... nice! On Nov 9, 6:36 pm, Andy Matthews [EMAIL PROTECTED] wrote: HOLY CRAP! My wife was in our BoA account this evening and they had some nice AJA and JS based interaction going on. So I thought

[jQuery] Re: This jQuery mailing list

2007-11-12 Thread Andy Matthews
Seriously? There's several hundred emails a day on this list. And you think it's not active? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of herbasher Sent: Sunday, November 11, 2007 12:07 PM To: jQuery (English) Subject: [jQuery] This jQuery

[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-12 Thread Andy Matthews
I found it REALLY slow in IE7 using the bells and whistles demo. Clicking one of the column headers to sort on took several seconds. The loading bar was a very nice effect, but there's no reason it should have taken that long, not with only 20 or 30 rows. I'd work on speed increases before any

[jQuery] Re: How to make the first word bold.

2007-11-12 Thread Andy Matthews
Can you provide the setup for the RSS feed? If you know that the feed will always be links like this: div id=title a href=123.htmlbOne Two Three/a/b/div a href=456.htmlfour five six/a /div a href=789.htmlseven eight nine/a /div And you just want the first link to be

[jQuery] Re: How to make the first word bold.

2007-11-12 Thread Andy Matthews
Viktor... You'd probably need an $.each() on there then. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Viktor Tarm Sent: Monday, November 12, 2007 2:35 PM To: jQuery (English) Subject: [jQuery] Re: How to make the first word bold. Thank you

[jQuery] Re: Easing cheat sheet demo page

2007-11-13 Thread Andy Matthews
That's still not the one he's thinking of. This is what you're looking for Glen: http://hosted.zeh.com.br/mctween/animationtypes.html andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Marshall Salinger Sent: Monday, November 12, 2007 8:45 PM To:

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Andy Matthews
I'm guessing it would be trivial to add in your own tags or functions. It seems like the author made it very simple to do so. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Guy Fraser Sent: Tuesday, November 13, 2007 8:35 AM To:

[jQuery] Re: ANNOUNCE: tinyEdit v.1.0 plugin for jQuery released

2007-11-13 Thread Andy Matthews
That plugin looks like exactly what I need for a project. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Tuesday, November 13, 2007 9:48 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: ANNOUNCE: tinyEdit v.1.0

[jQuery] Re: UI vs Interface

2007-11-13 Thread Andy Matthews
I believe that Rey Bango said they were in the process of whipping out the new version of UI to fix many of the issues that people have had. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeffrey Kretz Sent: Tuesday, November 13, 2007 10:15 AM

[jQuery] Re: Easing cheat sheet demo page

2007-11-13 Thread Andy Matthews
]renatolz On Nov 13, 11:06 am, Ralph Whitbeck [EMAIL PROTECTED] wrote: That link is great! On Nov 13, 3:59 am, Andy Matthews [EMAIL PROTECTED] wrote: That's still not the one he's thinking of. This is what you're looking for Glen: http://hosted.zeh.com.br/mctween/animationtypes.html

[jQuery] Re: Find text in a list item, remove it and replace with an image tag.

2007-11-15 Thread Andy Matthews
Why would you want to keep the bold tag if it's just going to be wrapped around an image? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of desmond Sent: Thursday, November 15, 2007 1:00 PM To: jQuery (English) Subject: [jQuery] Find text in a

[jQuery] Re: (this) question

2007-11-19 Thread Andy Matthews
Using the $ in a js variable (in the jQuery world) is generally a sign that the variable contains a jQuery object. It's just a nice way of helping the programmer know what to expect. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Feijó Sent:

[jQuery] Re: [SITE SUBMISSION] songza.com

2007-11-20 Thread Andy Matthews
Whoah... That's pretty freaking sweet! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of SeViR Sent: Tuesday, November 20, 2007 2:27 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [SITE SUBMISSION] songza.com Cool site!!, I like it,

[jQuery] Re: Firing off a jQuery action ASAP - before document ready?

2007-11-21 Thread Andy Matthews
have you tried window.ready? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of zarino Sent: Wednesday, November 21, 2007 8:20 AM To: jQuery (English) Subject: [jQuery] Firing off a jQuery action ASAP - before document ready? Hi there! I have a

[jQuery] Re: Image Rotator Plugin?

2007-11-26 Thread Andy Matthews
By rotate, do you mean flipping through a group of images, displaying one at a time? Or do you mean actually rotating the image in degrees so that you could flip it upside down? If you're just looking to flip through a group of images, then I'd look no further than the Cycle plugin from Mike

[jQuery] Re: Image Rotator Plugin?

2007-11-26 Thread Andy Matthews
through images is exactly what I need. The Cycle plugin appears to be what I'm looking for. Thanks. On Nov 26, 9:43 am, Andy Matthews [EMAIL PROTECTED] wrote: By rotate, do you mean flipping through a group of images, displaying one at a time? Or do you mean actually rotating the image in degrees

[jQuery] Re: [SITE SUBMISSION] Genfavicon.com

2007-11-29 Thread Andy Matthews
VERY nice! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Thursday, November 29, 2007 8:17 AM To: jquery-en@googlegroups.com Subject: [jQuery] [SITE SUBMISSION] Genfavicon.com You can read about here:

[jQuery] Re: [ANNOUNCE] New plugin - HeatColor

2007-11-29 Thread Andy Matthews
This is beautiful! I can see uses for this completely outside of data presentation. What about an interactive art map with invisible content. The user has no clue what values are contained inside the cells, but sorting various columns gives you a marvelous effect. andy -Original

[jQuery] Re: jQuery CoverFlow

2007-11-30 Thread Andy Matthews
But on his you can't drag it. Or at least I couldn't figure out how to in FF2. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Scholl Sent: Friday, November 30, 2007 9:50 AM To: jQuery (English) Subject: [jQuery] jQuery CoverFlow

[jQuery] Re: Smoothly scroll to the anchor given in the URL

2007-12-03 Thread Andy Matthews
There are several plugins for this behavior: http://www.freewebs.com/flesler/jQuery.LocalScroll/ http://www.freewebs.com/flesler/jQuery.ScrollTo/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Maccer Sent: Monday, December 03, 2007 8:30 AM

[jQuery] Re: ExtJS

2007-12-03 Thread Andy Matthews
They're planning on releasing an updated version of jQuery UI on december 18th, one day after the next release of jQuery. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kaare Rasmussen Sent: Monday, December 03, 2007 10:58 AM To:

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Andy Matthews
for releasing it to the community! andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ole Laursen Sent: Tuesday, December 04, 2007 6:04 AM To: jQuery (English) Subject: [jQuery] Ann: Flot 0.1 released Hi! I've just released Flot 0.1

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Andy Matthews
I like the idea of plugin chart components. Have 2 or 3 built in types, then release additional modules as requested. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ole Laursen Sent: Tuesday, December 04, 2007 12:22 PM To: jQuery (English)

[jQuery] Re: So... Dating site using jQuery....

2007-12-05 Thread Andy Matthews
Looks fairly nice. Might I suggest that rather than using the user id in the link like so: http://www.lovedango.com/user/profile/21 that you at least add in their user name: http://www.lovedango.com/user/profile/andymatthews that makes the URL more human readable, and makes their page feel a

[jQuery] Re: [NEWS] Getting jQuery Adopted in Corporations

2007-12-06 Thread Andy Matthews
Dugg _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Glen Lipka Sent: Thursday, December 06, 2007 12:53 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [NEWS] Getting jQuery Adopted in Corporations Wow, the digg this story thing worked. :)

[jQuery] Cross domain photo gallery using get().

2007-12-08 Thread Andy Matthews
I'm participating in an event in which you post photos of yourself each day (http://www.whiskerino.org/2007/creole/). The organizer of the event created RSS feeds for each participant. I thought it would be fun, and a good challenge to write a photo gallery using the Cycle plugin that could be

[jQuery] Re: Cross domain photo gallery using get().

2007-12-08 Thread Andy Matthews
. --Erik On 12/8/07, Andy Matthews [EMAIL PROTECTED] wrote: I'm participating in an event in which you post photos of yourself each day (http://www.whiskerino.org/2007/creole/). The organizer of the event created RSS feeds for each participant. I thought it would be fun, and a good

[jQuery] Re: Cross domain photo gallery using get().

2007-12-10 Thread Andy Matthews
Aldur... That's how I'm doing it now. The JS resides on my server, as does the data file which generates all of the HTML. The problem is that if I reference the data file locally (as if it was on MY server) the JS tries to look on the user's website for data.cfm. If I reference it absolutely, I

[jQuery] Re: OT: Browser history object and the back button

2007-12-11 Thread Andy Matthews
@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Tuesday, December 11, 2007 11:02 AM To: [jQuery] Subject: [jQuery] OT: Browser history object and the back button I recently implemented a mashup of client and server side detection used to collect information about a user's

[jQuery] Re: OT: Browser history object and the back button

2007-12-11 Thread Andy Matthews
Ooops... I was assigning a value to it: location.replace = 'someurl.html'; rather than using it as a method: location.replace('someurl.html'); it works when I use it right. :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews

[jQuery] LavaLamp for jQuery 1.2.x?

2007-12-12 Thread Andy Matthews
I'm really wanting to use Ganeshki's excellent LavaLamp plugin (http:// www.gmarwaha.com/blog/?p=7) but it appears that it doesn't work with the most current stable release of jQuery. Does anyone know if there's an updated release somewhere that meets the 1.2.x requirement? Or is there an

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-13 Thread Andy Matthews
() around line 84-85. I haven't tried it, let us know if it works. On Dec 12, 2007 11:21 PM, Andy Matthews [EMAIL PROTECTED] wrote: I'm really wanting to use Ganeshki's excellent LavaLamp plugin (http:// www.gmarwaha.com/blog/?p=7) but it appears that it doesn't work with the most current stable

[jQuery] Re: [PLUGIN] JAddTo

2007-12-13 Thread Andy Matthews
Mind you, I'm not deriding the plugin itself, which seems to work just dandy. I'm just wondering why you chose to do it via JS vs straight code. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, December 13, 2007 8:09

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-13 Thread Andy Matthews
easing plugin: http://youngisrael-stl.org/inc/jquery.lavalamp.js On Dec 12, 10:21 pm, Andy Matthews [EMAIL PROTECTED] wrote: I'm really wanting to use Ganeshki's excellent LavaLamp plugin (http://www.gmarwaha.com/blog/?p=7) but it appears that it doesn't work with the most current stable release

[jQuery] Re: [PLUGIN] JAddTo

2007-12-13 Thread Andy Matthews
No offense, but why should this be done via Javascript? All it appears to be is a series of icons linked to their respective websites. Wouldn't it just be easier to have this as a server side include, or something like that? I don't see anything in this plugin that should require client-side

[jQuery] Re: [PLUGIN] JAddTo

2007-12-13 Thread Andy Matthews
That's a perfect example of why to make it a plugin. For those people who might not have access to server side programming, your JS is a perfect solution. Well done, and in fact I might use it on a site I'M building. andy -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-13 Thread Andy Matthews
)] is not a function http://localhost/downloads/lavalamp/jquery-1.2.1.pack.js Line 11 Any ideas? On Dec 12, 11:25 pm, Danny [EMAIL PROTECTED] wrote: I modified it to run under 1.2, with the most recent easing plugin:http://youngisrael-stl.org/inc/jquery.lavalamp.js On Dec 12, 10:21 pm, Andy

[jQuery] Re: LavaLamp for jQuery 1.2.x?

2007-12-14 Thread Andy Matthews
Never mind... I was using the 1.3 easing plugin rather than the one which came with the lavalamp download. It's working now. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, December 13, 2007 8:29 PM To: jQuery

[jQuery] New jQuery release, but what about documentation

2007-12-17 Thread Andy Matthews
a usability standpoint, that's horrible. People using the docs are most likely looking for an answer to something that they're working on. Forcing them to jump through extra hoops just to get the info they need. Andy Matthews Senior ColdFusion Developer Office

[jQuery] Re: New jQuery release, but what about documentation

2007-12-17 Thread Andy Matthews
right now. As far as the rest: Are you offering to help? We're always looking for volunteers. --John On Dec 17, 2007 9:38 AM, Andy Matthews [EMAIL PROTECTED] wrote: It's all well and good that the jQuery team is coming out with new release, but what about the equally important documentation

[jQuery] Cycle plugin and manually generated paging links?

2007-12-18 Thread Andy Matthews
I'm looking to use the excellent Cycle plugin for a product page I'm building. I tried out the pager demo (http://www.malsup.com/jquery/ cycle/int2.html), but had some issues getting it working. I'd like to generate the links myself as I'd like to put some custom title attributes on each link.

[jQuery] Re: Cycle plugin and manually generated paging links?

2007-12-19 Thread Andy Matthews
the pagerAnchorBuilder option. http://www.malsup.com/jquery/cycle/pager2.html http://www.malsup.com/jquery/cycle/pager3.html Mike On Dec 18, 2007 10:15 PM, Andy Matthews [EMAIL PROTECTED] wrote: A little clarification. I have a product details page which contains 4 images of various states (distance

[jQuery] OT: Nashville, TN Flex User Group presents Flex 3 and AIR pre-release tour with Ben Forta

2007-12-19 Thread Andy Matthews
/special-events/). 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: Stupid little game :)

2007-12-19 Thread Andy Matthews
Dammit Stefan! I'm not going to get anything done the rest of the day. :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Petre Sent: Wednesday, December 19, 2007 2:41 PM To: jquery-en@googlegroups.com Subject: [jQuery] Stupid little

[jQuery] Re: BBC Redesign

2008-01-02 Thread Andy Matthews
Very nice...well done -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nathandh Sent: Monday, December 31, 2007 11:51 PM To: jQuery (English) Subject: [jQuery] BBC Redesign Looks like the long-overdue BBC redesign is using jQuery (and a metric

[jQuery] Re: BBC Redesign

2008-01-02 Thread Andy Matthews
... why on earth is it there? - jake On Jan 2, 2008 9:43 AM, Andy Matthews [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] wrote: Very nice...well done -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nathandh Sent: Monday, December 31, 2007 11

[jQuery] Re: Is there any slideshow plugin not only for images?

2008-01-02 Thread Andy Matthews
The Cycle plugin works with ANY element placed within the container. There's actually a demo for plain old text here: http://www.malsup.com/jquery/cycle/int2.html bottom of the page. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rafael Santos Sent:

[jQuery] Re: [SITE SUBMISSION] Brightegg.com

2008-01-02 Thread Andy Matthews
One point on the password strength meter. The green of the very strong has almost no contrast against the light blue of the field module. It's very difficult to read. You might consider changing that green to something darker. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Is there an sample like iGoogle?

2008-01-03 Thread Andy Matthews
This might work for you: http://host.sonspring.com/portlets/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ayeah Sent: Wednesday, January 02, 2008 10:33 PM To: jQuery (English) Subject: [jQuery] Is there an sample like iGoogle? I am making

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-03 Thread Andy Matthews
This is KICKIN'! Well done Ariel!! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: Thursday, January 03, 2008 7:16 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery.ScrollTo 1.3 released veeery

[jQuery] Re: [ANNOUNCE] jQuery.ScrollTo 1.3 released

2008-01-03 Thread Andy Matthews
Oh...one thing I'd like to see on the demos is a code view. On the various links that you can click, I'd like to see exactly what options you're using. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ariel Flesler Sent: Thursday, January 03,

[jQuery] Re: [ANNOUNCE] jQuery.ScrollTo 1.3 released

2008-01-03 Thread Andy Matthews
thought developers always checked the source ( asi in, View Source ). I was told that the code, in former demo was not clear. So I made this one very redundant and full of comments. Maybe I should add a sign saying check the demo source to see how it is done ? Ariel Flesler On 3 ene, 11:56, Andy

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Andy Matthews
I've used Charles and honestly I don't like it. I use Firebug for FF, and for Flash dev, I use the Flash Net Debugger. A co-worker uses Service Capture, but I've not tried it enough to know if it's good or not. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Andy Matthews
Larry... I'm RIGHT there with you. Better to develop in IE, then move forward into other browsers. Better than getting cool code working with a fringe browser, then finding out it doesn't work correctly in the primary browser. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-03 Thread Andy Matthews
in each as you go. Stick to basic standards and everything should be fine. Just my two cents. On 1/3/08, Andy Matthews [EMAIL PROTECTED] wrote: Larry... I'm RIGHT there with you. Better to develop in IE, then move forward into other browsers. Better than getting cool code working with a fringe

[jQuery] SITE: http://glassbooth.org/ - jQuery in the wild

2008-01-03 Thread Andy Matthews
This is a site that appears to help you match up to a US presidential candidate. It's got some nice interaction so checked under the hood and sure enough...it's using jQuery. Hoo-rah!

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-03 Thread Andy Matthews
] wrote: Ok, sounds good, I'll try to add that ASAP. Thanks! Ariel Flesler On 3 ene, 12:33, Andy Matthews [EMAIL PROTECTED] wrote: Ariel... I know I could check the source...that would be easy. But it's also nice to have a quick reference as to what I'm clicking on. Mike

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-04 Thread Andy Matthews
try it on different browser versions and platforms. Thanks Ariel Flesler On 3 ene, 12:36, Ariel Flesler [EMAIL PROTECTED] wrote: Ok, sounds good, I'll try to add that ASAP. Thanks! Ariel Flesler On 3 ene, 12:33, Andy Matthews [EMAIL PROTECTED] wrote: Ariel... I

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-07 Thread Andy Matthews
, Ariel Flesler [EMAIL PROTECTED] wrote: Ok, sounds good, I'll try to add that ASAP. Thanks! Ariel Flesler On 3 ene, 12:33, Andy Matthews [EMAIL PROTECTED] wrote: Ariel... I know I could check the source...that would be easy. But it's also nice to have a quick

[jQuery] Re: Is it possible to show a specific div on a distant page (same domain) ?

2008-01-07 Thread Andy Matthews
Karl... I'm thinking he wants to show/hide a div on another page. Not pull content into the current page from another. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Monday, January 07, 2008 7:42 AM To:

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-07 Thread Andy Matthews
Confusion?? One plugin has a z on the end of it. That's totally different. :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Penner, Matthew Sent: Monday, January 07, 2008 11:18 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re:

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Andy Matthews
You could probably simulate a drop shadow with some creative HTML. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Erik Beeson Sent: Tuesday, January 08, 2008 8:19 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved

[jQuery] Re: [ANNOUNCE] Cornerz - Bullet Proof Curved Corners using Canvas/VML

2008-01-08 Thread Andy Matthews
Weepy... I was kidding. You get square corners if you don't do anything. That's the default display. I was just messing around with you. ;) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of weepy Sent: Tuesday, January 08, 2008 9:45 AM To:

[jQuery] Re: Progress image swap

2008-01-08 Thread Andy Matthews
Also, consider that your image might be taking a while to load. Consider preloading the image. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Benjamin Sterling Sent: Tuesday, January 08, 2008 3:34 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Progress

[jQuery] Re: [ANNOUNCE] Space gallery

2008-01-09 Thread Andy Matthews
H! That's so awesome! Now can you get it to work with the scroll wheel, or at least the up/down arrows? andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Petre Sent: Wednesday, January 09, 2008 3:00 PM To:

[jQuery] Re: [OFF TOPIC] Really weird Behaviour in IE

2008-01-15 Thread Andy Matthews
What happens when you you have an http:// in there? Your href should never just be www.somedomain.com anyway as that will attempt to load that as a document in the current domain's directory structure. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]

[jQuery] OT: Networking Vista Home/Home Premium and Leopard

2008-01-17 Thread Andy Matthews
a program called gpedit.msc, which is the piece which is NOT on her computer. I need to get this going as soon as possible. Anyone have any ideas/solutions? Andy Matthews Senior ColdFusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax

[jQuery] Anyone wanna 'Jquer-ify' this date picker?

2008-01-23 Thread Andy Matthews
http://ajaxian.com/archives/new-twist-on-date-pickers 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/ 2008 Email NADA.jpg

[jQuery] Re: how to build a image cycle?

2008-01-23 Thread Andy Matthews
Have you looked at the Cycle plugin from Mike Alsup? http://www.malsup.com/jquery/cycle It does everything you need. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of DoZ Sent: Wednesday, January 23, 2008 12:12 PM To: jQuery (English) Subject:

[jQuery] Re: how to build a image cycle?

2008-01-23 Thread Andy Matthews
: [jQuery] Re: how to build a image cycle? ...yes, but I forgot to mention the I need to show at least 5 images! On 23 Gen, 20:03, Andy Matthews [EMAIL PROTECTED] wrote: Have you looked at the Cycle plugin from Mike Alsup? http://www.malsup.com/jquery/cycle It does everything you need

[jQuery] Re: Feb 12 IE6 Forced Update

2008-01-24 Thread Andy Matthews
The article I read mentioned that MS is going to force IE7 on users, but that there was a way that sysadmins could prevent this. Whether that means that lots of people are going to try and prevent it is another story. The problem is that as long as there is even a 5% or 10% level of use of IE6,

[jQuery] Re: Feb 12 IE6 Forced Update

2008-01-24 Thread Andy Matthews
LOL!!! That totally puts it into perspective. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeffrey Kretz Sent: Thursday, January 24, 2008 10:12 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Feb 12 IE6 Forced Update If IE problems ever start to

[jQuery] Re: Feb 12 IE6 Forced Update

2008-01-24 Thread Andy Matthews
http://sitening.com/blog/2008/01/22/microsoft-gives-away-early-or-late-chris tmas-present-to-web-designers _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jonathan Sharp Sent: Thursday, January 24, 2008 10:51 AM To: jquery-en@googlegroups.com Subject: [jQuery]

<    1   2   3   4   5   6   7   8   9   >