[jQuery] Re: Should $(document).ready() be external? And should it be placed at the bottom of the page?

2009-04-14 Thread Andy Matthews
y() be external? And should it be placed at the bottom of the page? So do you think placing it in an external file poses caching benefits that outweigh the extra HTTP request? The number of HTTP requests seems to be the biggest killer with speed On Apr 14, 10:34 am, "Andy Matthew

[jQuery] Re: how to select elements inside jQuery objects

2009-04-16 Thread Andy Matthews
It's called context. Using your example, if you wanted to select all items with a class of .mol_row INSIDE the jQuery object mol_elements, you'd do this: $(".mol_row", mol_elements) That selector says "look for .mol_row in the context of mol_elements. Andy matthe

[jQuery] Re: $("button").Bind("click", function) Vs

2009-04-16 Thread Andy Matthews
Try disabling the button, then reenabling it with jQuery? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of reach4thelasers Sent: Thursday, April 16, 2009 8:39 AM To: jQuery (English) Subject: [jQuery] $("button").Bind("click", function)

[jQuery] Re: jQuery Cycle with Transparent GIFs...Works in FF, Safari...but not in IE

2009-04-16 Thread Andy Matthews
issue, I see no problem with your slideshow in IE7. Which portion should we be looking at? Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Matt M. Sent: Thursday, April 16, 2009 2:07 PM To: jQuery (English) Subject

[jQuery] Re: Shorten the JQuery code

2009-04-16 Thread Andy Matthews
I'd be careful with code like that. It is terse, and very elegant, but not all that readable from a "coding for the next guy" mentality. _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Joseph Le Brech Sent: Thursday, April 16, 2009 4:12 PM To: jquery-

[jQuery] Re: how to streamline my code with Event Delegation?

2009-04-16 Thread Andy Matthews
It would be more ideal to have some better way to identify each link. For example, assuming a similar structure: link 01 link 02 You might have this code: // all anchor tags inside the linkContainer $('#linkContainer a').click(function(e){ // prenvet the default link b

[jQuery] Re: Shorten the JQuery code

2009-04-16 Thread Andy Matthews
code Guess it depends on who the next guy is :) On Apr 16, 2:16 pm, "Andy Matthews" wrote: > I'd be careful with code like that. It is terse, and very elegant, but > not all that readable from a "coding for the next guy" mentality. > >   _ > >

[jQuery] Re: jQuery AIR stripped

2009-04-17 Thread Andy Matthews
Interesting concept. I doubt that the jQuery team itself would approach that project as it would require forked code, but it might be a fun project for an individual. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Spot Sent: Fr

[jQuery] Re: Newbie Question - Show/Hide on a:link

2009-04-17 Thread Andy Matthews
Try using toggle instead: ${"a.welcomenav").toggle(function(){ $("#welcome").show(); return false; },function(){ $("#welcome").hide(); return false; }); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of K

[jQuery] Re: binding after .get()

2009-04-17 Thread Andy Matthews
If you're using a current version of jQuery, then the liveQuery method is for you. http://docs.jquery.com/Events/live#typefn _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Karl Swedberg Sent: Friday, April 17, 2009 1:51 PM To: jquery-en@googlegroup

[jQuery] Re: unsubscribe please

2009-04-17 Thread Andy Matthews
Have you tried using the Google Groups interface? _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Johnny Lombardo Sent: Friday, April 17, 2009 2:01 PM To: jquery-en@googlegroups.com Subject: [jQuery] unsubscribe please I have been trying to unsubscrib

[jQuery] jQuery and Flickr? Is there a best of breed plugin?

2009-04-20 Thread Andy Matthews
I'm looking for a simple plugin which would pull in a specified Flickr feed and display it using jQuery. Does something like this already exist? Google shows about 5 or 6 but none of them appear to work. andy matthews

[jQuery] Re: Can you help me understand .end() ?

2009-04-22 Thread Andy Matthews
Essentially the end method returns the result of the very first selector. Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of MorningZ Sent: Wednesday, April 22, 2009 1:06 PM To: jQuery (English) Subject: [jQuery] Re: Can

[jQuery] Re: Can you help me understand .end() ?

2009-04-22 Thread Andy Matthews
d(); that would be a selection of tags, *not* the first selector of just the tag Right from the docs "Revert the most recent 'destructive' operation, changing the set of matched elements to its previous state (right before the destructive operation)." On Apr 22, 2

[jQuery] Re: jQuery countdown with simple percentage bar display?

2009-04-22 Thread Andy Matthews
see which > class to add for changing the color: > > http://docs.jquery.com/UI/Progressbar#event-change > > - Richard > > On Wed, Apr 22, 2009 at 2:35 PM, Andy Matthews wrote: > > > > > I'm wondering if there exists a jQuery plugin which would display a &

[jQuery] Re: input:empty and remember password

2008-08-25 Thread Andy Matthews
This is what someone on this list gave me about 2 weeks ago: // the focus / blur functionality of the text input // fields for the email a friend form. $('#input.email').bind('focus', function() { // Set the default value if it isn't set if ( !this.defaultValue ) this.defaultVal

[jQuery] Re: Problem with Tutorials:How jQuery Works

2008-08-26 Thread Andy Matthews
"Oh?! You mean I have to include jQuery before the examples will work?" :) I've done that before without realizing it. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Tuesday, August 26, 2008 8:20 AM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: Hiding other divs when I show one

2008-08-27 Thread Andy Matthews
Do you have a link you can provide? Something online? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of illtron Sent: Wednesday, August 27, 2008 8:37 AM To: jQuery (English) Subject: [jQuery] Hiding other divs when I show one I'm working on a sc

[jQuery] Dan Switzer's Autocomplete plugin - can I do this...

2008-08-27 Thread Andy Matthews
as they type, it would filter out other options. Or of course they could select it straight away, or type their own. I thought it would be enough to put a click handler on the input field like so: .click(function(){ showResults(); }); but that doesn't work. Anyone? Dan?

[jQuery] Re: Transfer effect in UI

2008-08-28 Thread Andy Matthews
I can confirm this. The Transfer effect doesn't work in Safari 3 for the PC. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, August 28, 2008 7:41 AM To: jQuery (English) Subject: [jQuery] Transfer effect in UI

[jQuery] Change event for hidden form field

2008-08-28 Thread Andy Matthews
it just doesn't fire the change handler. ____ Andy Matthews Senior ColdFusion Developer Office: 615.627.9747 Fax: 615.467.6249 www.dealerskins.com <http://www.dealerskins.com/> Total customer satisfaction is my number 1 priority! If you are not completely sat

[jQuery] Re: Change event for hidden form field

2008-08-28 Thread Andy Matthews
Something I forgot to add. The change event that I bound does fire correctly when I manually change the value of the field (I changed it's type from hidden to text for testing). _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, A

[jQuery] Re: Change event for hidden form field

2008-08-28 Thread Andy Matthews
nFormField() { $('$hiddenFormField').trigger('change'); } //pop up window calls the the parent window's function window.opener.triggerHiddenFormField(); brian On Aug 28, 11:40 am, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Something I forgot to add. The c

[jQuery] Re: Dan Switzer's Autocomplete plugin - can I do this...

2008-08-28 Thread Andy Matthews
Dan... I think it might actually work without those changes you suggested. Problem is that at the point I'm calling the plugin, it doesn't recognize "showResults" as a method: $("#category").autocompleteArray( // this array comes from the coupons_edit.cfm file catArray, {

[jQuery] Re: Dan Switzer's Autocomplete plugin - can I do this...

2008-08-28 Thread Andy Matthews
this... Sorry, messed that up. http://plugins.jquery.com/project/autocompletex Jörn On Thu, Aug 28, 2008 at 9:03 PM, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Its here: http://plugins.jquery.com/project/autocomplex > > Jörn > > On Thu, Aug 28, 2008 at 8:59 PM, Andy Matthews

[jQuery] Re: Dan Switzer's Autocomplete plugin - can I do this...

2008-08-28 Thread Andy Matthews
There we go. It's no big deal. Just thought it would be a nice addition. Thanks for checking it out Dan. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan G. Switzer, II Sent: Thursday, August 28, 2008 2:37 PM To: jquery-en@googlegroups.com Su

[jQuery] Re: jquery for web designers

2008-08-29 Thread Andy Matthews
John... You could focus on some of the things which can be condensed in the document using jQuery. For example. In an app I'm writing, I want rounded corners on some of my containers but both the color of the container, and the background against which it is displayed are dynamic, so I couldn't u

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread Andy Matthews
According to a site called GetClicky, Chrome already has 2.8% market share: http://getclicky.com/chrome/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Kruse Sent: Tuesday, September 02, 2008 4:49 PM To: jQuery (English) Subject: [jQuer

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread Andy Matthews
Makes sense because Chrome is based on WebKit just like Safari. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of timothytoe Sent: Tuesday, September 02, 2008 5:49 PM To: jQuery (English) Subject: [jQuery] Re: jQuery test suite on new Google Chrom

[jQuery] Re: New Google Browser announced

2008-09-03 Thread Andy Matthews
Microsoft can't "retire IE6" any more than Ford could retire 1996 Ford Explorers. It has to be the user's choice. What's a better suggestion is for WEBSITES to stop supporting IE6 (coding CSS and JS fixes and workarounds) and encourage people to upgrade on their own. _ From: jquery-en@goo

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread Andy Matthews
According to getclicky.com, Chrome already has an almost 3% market share: getclicky.com/chrome/ -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Wednesday, September 03, 2008 9:01 AM To: jquery-en@googlegroups.com Subject: [jQuer

[jQuery] Re: I don't want to downoad a plugin

2008-09-03 Thread Andy Matthews
Is there a reason you don't want to download the library, or plugins? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jjsanders Sent: Wednesday, September 03, 2008 9:09 AM To: jQuery (English) Subject: [jQuery] I don't want to downoad a plugin

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-03 Thread Andy Matthews
They started with a brand new codebase. No bloat from stuff that's unused or inefficient. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, September 03, 2008 3:38 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery tes

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-04 Thread Andy Matthews
PROTECTED] On Behalf Of Steffan A. Cline Sent: Thursday, September 04, 2008 8:37 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jQuery test suite on new Google Chrome browser on 9/3/08 7:19 AM, Andy Matthews at [EMAIL PROTECTED] wrote: > > According to getclicky.com, Chrome alrea

[jQuery] Re: Cappucino's FlickrDemo in 45 lines of jQuery

2008-09-05 Thread Andy Matthews
Are you supposed to be able to open the picture and view it large? Because that's what I would expect to be able to do. That doesn't work in either version, (yours or theirs). -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ben Sargent Sent: Fri

[jQuery] Re: $("xx").load can't load css and js in html file on Chrome??

2008-09-08 Thread Andy Matthews
What's the actual code? I'm assuming you're not actually using 'xx' as your selector because that would never work. That format is reserved for accesing a specific tag. If you want to access a class, or id, then you'd need to prepend the 'xx' with either a . for a class, or # for an id. -Or

[jQuery] Re: $("xx").load can't load css and js in html file on Chrome??

2008-09-08 Thread Andy Matthews
Gotcha. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jove Sent: Monday, September 08, 2008 10:41 AM To: jQuery (English) Subject: [jQuery] Re: $("xx").load can't load css and js in html file on Chrome?? I' sorry, "xx" just a example, in act

[jQuery] Re: Fire events programmatically

2008-09-08 Thread Andy Matthews
As an addition to this, you can also listen for specific events, or custom events like so: $('#myDiv').bind('myCustomEvent',function(){ // do something }); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Nathanson Sent: Monday, September 08

[jQuery] Re: jquery is breaking iWebSite.js

2008-09-09 Thread Andy Matthews
Can you post a link to your site, with jQuery and the iWeb javascript code? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of dittmer Sent: Tuesday, September 09, 2008 3:28 PM To: jQuery (English) Subject: [jQuery] jquery is breaking iWebSite.js

[jQuery] Re: put image on top of another image

2008-09-09 Thread Andy Matthews
You don't need jQuery for this. It can be done with CSS. Here's a link that you can inspect to see what I'm talking about: http://www.commadelimited.com/code/overlapimages/ andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cc96ai Sent: Tues

[jQuery] Re: Jcrop v0.9.0 image cropping plugin - comments please

2008-09-10 Thread Andy Matthews
re inside a cropping selection to "run" the selection. andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kelly Sent: Tuesday, September 09, 2008 4:35 PM To: jQuery (English) Subject: [jQuery] Jcrop v0.9.0 image cropping plugin

[jQuery] Re: jQuery how to pronounce

2008-09-10 Thread Andy Matthews
jay-queer-ee -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Reinaldo "JuniorZ" Sent: Wednesday, September 10, 2008 8:02 AM To: jQuery (English) Subject: [jQuery] jQuery how to pronounce Hello guys, I'm goigo to give a speech on the campus ab

[jQuery] Re: jQuery how to pronounce

2008-09-10 Thread Andy Matthews
That reminds me of the "how to pronounce GIF" page: http://www.olsenhome.com/gif/ Incidentally, it's pronounced with a soft G, like giraffe. Not a hard G like gift. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: Wednesday, Septembe

[jQuery] Re: Detecting Ctrl + click

2008-09-11 Thread Andy Matthews
Should just be a matter of checking the keypress event: http://docs.jquery.com/Events/keypress#fn -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, September 10, 2008 6:10 PM To: jQuery (English) Subject: [jQu

[jQuery] jquery 1.2.3, validation plugin 1.1, and IE6

2008-09-11 Thread Andy Matthews
A coworker is trying to use this combination of codes to get a basic validation working for a form he's building. It works just fine in FF2, but does nothing in IE6, with no errors. Does anyone know of any reason why this shouldn't work? ____ And

[jQuery] Re: jquery 1.2.3, validation plugin 1.1, and IE6

2008-09-11 Thread Andy Matthews
y] Re: jquery 1.2.3, validation plugin 1.1, and IE6 Either you update to latest version (1.2.6 + 1.4) or you at least provide a testpage - can't help you otherwise. Jörn On Thu, Sep 11, 2008 at 5:04 PM, Andy Matthews <[EMAIL PROTECTED]> wrote: > A coworker is trying to use this comb

[jQuery] Re: Oddity with Jquery and Adobe AIR

2008-09-11 Thread Andy Matthews
r HTML and making it far easier to read. andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of gecko68 Sent: Thursday, September 11, 2008 1:45 PM To: jQuery (English) Subject: [jQuery] Oddity with Jquery and Adobe AIR I am trying to append

[jQuery] Re: Oddity with Jquery and Adobe AIR

2008-09-12 Thread Andy Matthews
e the HTML being added is generated via Ajax. I guess I could bring the data in via json and assemble the HTML objects from within the original script. I am curious why it works in safari but not webkit/air. Thanks for the assist. On Sep 11, 4:40 pm, "Andy Matthews" <[EMAIL PROTECTED]

[jQuery] Re: Checking if input is a number.

2008-09-16 Thread Andy Matthews
Well, a number by definition can't have spaces in it. So if there ARE spaces, then it's a string, and can be treated as such. Alternately I suppose you could try multiplying the value by 1 and see what you get. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PRO

[jQuery] Re: apples webclip feature in jquery

2008-09-17 Thread Andy Matthews
Could you elaborate? What is this webclip of which you speak? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Shafer Sent: Wednesday, September 17, 2008 11:41 AM To: jQuery (English) Subject: [jQuery] apples webclip feature in jquery I am

[jQuery] Re: jQuery.center Plugin

2008-09-18 Thread Andy Matthews
Bob... Is there any reason why you're not doing this with pure CSS? You'd probably be done by now if you did. Here's a simple example: http://commadelimited.com/uploads/center.html As you can see, there's hardly anything to the CSS, and it's very simple to implement. andy -Original Mes

[jQuery] Re: using click() with $(event.target).is(something)

2008-09-22 Thread Andy Matthews
If the click event for button A happens after the page load, then you'll need to rebind the event for button A in button b's success block. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of light-blue Sent: Monday, September 22, 2008 3:24 PM To: j

[jQuery] Re: Listen for location anchor change?

2008-09-24 Thread Andy Matthews
Javascript has the built in property location.hash that will return the value of the anchor along with the # sign. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of mario Sent: Wednesday, September 24, 2008 3:09 PM To: jQuery (English) Subje

[jQuery] Re: i was patient, now i'm frustrated

2008-09-26 Thread Andy Matthews
You're complaining why? Why should the jQuery site not loading affect your job in any way? The jQuery site offers nothing to me that I can't find elsewhere. I can get the most recent jQuery release from Google code, Remy Sharp has the API hosted on his site (or his downloable AIR app), and I have

[jQuery] Re: cite jquery

2008-09-29 Thread Andy Matthews
Footer link would probably be nice, or a "credits" page in the footer, or even in your source code. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of forgetta Sent: Monday, September 29, 2008 10:16 AM To: jQuery (English) Subject: [jQuery] cite jq

[jQuery] Re: sortable links

2008-10-13 Thread Andy Matthews
There's probably a "return false" option in the plugin options. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Adam Sent: Monday, October 13, 2008 8:50 AM To: jQuery (English) Subject: [jQuery] sortable links Using the jquery UI plugin, I hav

[jQuery] Re: sortable links

2008-10-13 Thread Andy Matthews
He's not talking about clicking on the link to "activate it", but clcking on it to drag and sort it. I will say that you might be better off applying the sortable to an LI tag which contains the link, rather than directly to the link itself. Remember that a link isn't technically a list, but a g

[jQuery] Re: Autolinking Twitter @usernames with jQuery

2008-10-22 Thread Andy Matthews
A simple regex should take care of that for you. Just search for any occurrence of @ and wrap the result in an href tag. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Betty B Sent: Wednesday, October 22, 2008 1:28 PM To: jQuery (English) Subje

[jQuery] testing - please ignore

2008-10-27 Thread Andy Matthews
asdsad

[jQuery] Re: pagination solution

2008-10-27 Thread Andy Matthews
The OP said that he was using ASP. Depending on what data you're showing, the tablesorter plugin might work for you. It's got pagination built in if I recall. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rene Veerman Sent: Monday, Oct

[jQuery] Re: Background image position?!

2008-10-27 Thread Andy Matthews
Works fine for me in Chrome. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Paul Cripps Sent: Monday, October 27, 2008 7:45 AM To: jquery-en@googlegroups.com Subject: [jQuery] Background image position?! I have a pop up div on our sit

[jQuery] Re: my first plugin

2008-10-28 Thread Andy Matthews
That's very well done. Good job Diego. I really like the animation when you hover over the thumbnail. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of diego Sent: Tuesday, October 28, 2008 2:04 PM To: jQuery (English) Subject: [jQuery] my first

[jQuery] Getting width of broken image?

2008-10-29 Thread Andy Matthews
I'm loading in a batch of images dynamically. Some of the images might not exist and I'm wondering how I might test for that image using jQuery (1.2.6). All I really want to do is to remove that img from the DOM so that it doesn't show on the page. I thought at first it would be simple enough to

[jQuery] Re: Getting width of broken image?

2008-10-29 Thread Andy Matthews
ause you wrote {'img'). On 29 Okt., 14:30, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > I'm loading in a batch of images dynamically. Some of the images might > not exist and I'm wondering how I might test for that image using > jQuery (1.2.6). All I r

[jQuery] Re: Getting width of broken image?

2008-10-29 Thread Andy Matthews
ned, is your document valid? > > I get the correct image width by using width() on both IE and FF. > Alternatively you can check for the offsetWidth attribute. > > $('img').each(function(){ >    alert(this.offsetWidth>500); > > }); > > On Oct 29, 11:30 a

[jQuery] Re: Getting width of broken image?

2008-10-29 Thread Andy Matthews
only after all images are loaded, so you can > do this: > > $(window).load(function() { >     $("img").each(function() { >         alert( this.offsetWidth>500 ); >     }); > > }); > > -- Josh > > - Original Message - > From: "Andy Mat

[jQuery] Re: Getting width of broken image?

2008-10-29 Thread Andy Matthews
loaded in the DOM and have the event handler bound before the images themselves are loaded. -- Josh - Original Message - From: "Andy Matthews" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Wednesday, October 29, 2008 11:37 AM Subject: [jQuery] Re: Getting w

[jQuery] Re: Getting width of broken image updated: working now

2008-10-30 Thread Andy Matthews
h ' + $(this).width()); }); This should work ok within document.ready, as the img tags will be loaded in the DOM and have the event handler bound before the images themselves are loaded. -- Josh - Original Message - From: "Andy Matthews" <[EMAIL PROTECTED]> To: &quo

[jQuery] Re: Script like this site: http://ringvemedia.com/

2008-10-31 Thread Andy Matthews
I don't think you need Javascript for that. If you put an image as a background, then tell it to scale to 100%, you should be good. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Gabriel Tadeu Sent: Thursday, October 30, 2008 5:06 PM To: jQuery

[jQuery] Re: Gradientz

2008-11-04 Thread Andy Matthews
Man...how's that for service! Great job weepy! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of weepy Sent: Tuesday, November 04, 2008 8:41 AM To: jQuery (English) Subject: [jQuery] Re: Gradientz Ok this is fixed -> I've just pushed a new versi

[jQuery] Re: Large text files via AJAX

2008-11-04 Thread Andy Matthews
Honestly it sounds like this isn't a good use of AJAX. Wasn't reallty intended for use with 1mb+ files. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, November 03, 2008 5:54 PM To: jquery-en@googlegroups.com Subje

[jQuery] Re: "on click" doesn't work!

2008-11-05 Thread Andy Matthews
It might help if you moved the jQuery code out of the HTML. It would help you focus on each seperately which could assist you in finding the problem. Plus, if you're just going to use jQuery inline, then why bother with using it at all? andy -Original Message- From: jquery-en@googlegrou

[jQuery] Re: Check if remote file exists.

2008-11-05 Thread Andy Matthews
I think if you use the $.ajax method, you can implement the built in failure method and go from there. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Genu Sent: Wednesday, November 05, 2008 12:54 PM To: jQuery (English) Subject: [jQuery]

[jQuery] Re: Effect Like slideUp/Down

2008-11-05 Thread Andy Matthews
There's also show/hide. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Panman Sent: Wednesday, November 05, 2008 3:09 PM To: jQuery (English) Subject: [jQuery] Effect Like slideUp/Down I cannot for the life of me figure this out. I know it mu

[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-en@googlegrou

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

2008-01-10 Thread Andy Matthews
Demo works flawlessly in IE7. Good job weepy! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of weepy Sent: Thursday, January 10, 2008 3:42 AM To: jQuery (English) Subject: [jQuery] Re: Cornerz - Bullet Proof Curved Corners using Canvas/VML Grea

[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
of the solutions I found requires 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

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

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

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

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

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

[jQuery] Re: Feb 12 IE6 Forced Update

2008-01-24 Thread Andy Matthews
day, January 24, 2008 11:05 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Feb 12 IE6 Forced Update On Jan 24, 2008 8:21 AM, Andy Matthews wrote: I personally have put off installing it IE7 at home so that I can still test with IE6. Andy, If you want to be able to test with I

[jQuery] Re: Feb 12 IE6 Forced Update

2008-01-24 Thread Andy Matthews
Right... That's the ideal method... _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Thursday, January 24, 2008 11:17 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Feb 12 IE6 Forced Update On Jan 24, 2008, at 12:07 PM,

[jQuery] Re: http://jquery.com/api/ page broken

2008-01-28 Thread Andy Matthews
Same for me. Tried it in IE6, and FF2 and neither worked. jQuery has REALLY got to get the documentation improved. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Yansky Sent: Saturday, January 26, 2008 5:50 PM To: jQuery (English) Subject: [jQ

[jQuery] Re: http://jquery.com/api/ page broken

2008-01-28 Thread Andy Matthews
roken The http://jquery.com/api/ is outdated; the docs for the current jQuery version is at http://docs.jquery.com/. Andy, feel free to volunteer your time to help improved the documentation. On 1/28/08, Andy Matthews <[EMAIL PROTECTED]> wrote: Same for me. Tried it in IE6, and FF2

[jQuery] Re: http://jquery.com/api/ page broken

2008-01-28 Thread Andy Matthews
[mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Monday, January 28, 2008 12:04 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: http://jquery.com/api/ page broken Andy Matthews schrieb: > It's less an improvement on the content than it is the presentation. For the time being,

[jQuery] Re: on click event does not response

2008-02-06 Thread Andy Matthews
The liveQuery plugin takes care of this work for you. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Giant Jam Sandwich Sent: Wednesday, February 06, 2008 3:55 PM To: jQuery (English) Subject: [jQuery] Re: on click event does not response jQue

[jQuery] Re: Thickbox Alternative that Works with jQuery

2008-02-07 Thread Andy Matthews
If you like Thickbox, why are you looking for something different? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cfdvlpr Sent: Thursday, February 07, 2008 10:20 AM To: jQuery (English) Subject: [jQuery] Thickbox Alternative that Works with jQu

[jQuery] I'm stumped! How to accomplish this navigation rollover effect?

2008-02-07 Thread Andy Matthews
This is what the client wants: http://commadelimited.com/uploads/rollover.jpg (text has been blurred out intentionally) The site is VERY basic: nav colum on left, content column on right. The building it out is easy, but the nav is throwing me for a loop. My original thought was that I could use

[jQuery] Re: I'm stumped! How to accomplish this navigation rollover effect?

2008-02-08 Thread Andy Matthews
Wixus... I know how to write the code to actually do the animation. The problem I'm finding is that when the animation kicks off, it'll throw off the rest of the layout. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of wixus Sent: Friday, Februa

[jQuery] Re: I'm stumped! How to accomplish this navigation rollover effect?

2008-02-08 Thread Andy Matthews
lto:[EMAIL PROTECTED] On Behalf Of andrea varnier Sent: Friday, February 08, 2008 3:37 AM To: jQuery (English) Subject: [jQuery] Re: I'm stumped! How to accomplish this navigation rollover effect? On 8 Feb, 02:41, Andy Matthews <[EMAIL PROTECTED]> wrote: > I'm thinking now that I

[jQuery] Re: I'm stumped! How to accomplish this navigation rollover effect?

2008-02-08 Thread Andy Matthews
y (English) Subject: [jQuery] Re: I'm stumped! How to accomplish this navigation rollover effect? On 8 Feb, 16:28, "Andy Matthews" <[EMAIL PROTECTED]> wrote: > Andrea... > > I think you're right...absolute positioning should solve my problem. > The animation

[jQuery] OT: FCK editor now double spaces with enter key?

2008-02-12 Thread Andy Matthews
We've been using FCK editor for a while now. It used to create a single return when hitting the enter button. We recently upgraded to a newer version (2.5 I think) and now it creates a double space instead. Does anyone know if this is a setting that can be changed? andy

[jQuery] Re: OT: FCK editor now double spaces with enter key?

2008-02-13 Thread Andy Matthews
Right... You can force it to single space by hitting SHIFT + enter, but I'd like to know if there's a preference which can be changed to force it to revert to single spacing by default. This is changed in the new version of FCK. -Original Message- From: jquery-en@googlegroups.com [mailt

[jQuery] Re: what editor do you use?

2008-02-13 Thread Andy Matthews
Editplus www.editplus.com Best one I've found in 6+ years of looking, been using it for about the same amount of time. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Feijó Sent: Wednesday, February 13, 2008 10:38 AM To: jquery-en@googlegroups.com Subject: [j

[jQuery] Re: what editor do you use?

2008-02-13 Thread Andy Matthews
PROTECTED] On Behalf Of Feijó Sent: Wednesday, February 13, 2008 10:53 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: what editor do you use? I dont like the editplus interface, very ancient :) But its a good app too!! Feijó Andy Matthews escreveu: Editplus www.editplus.com Best

[jQuery] Re: what editor do you use?

2008-02-13 Thread Andy Matthews
jquery-en@googlegroups.com Subject: [jQuery] Re: what editor do you use? They improved a little the interface, has been some time since the last time I saw it But editpad++ is free!! editplus has pay resources :) baita abraço Feijó Andy Matthews escreveu: Not sure what you mean...I just l

<    3   4   5   6   7   8   9   10   >