[jQuery] Re: Button Click

2008-07-11 Thread Andy Matthews
!-- the jQuery -- script type=text/javascript !-- $(document).ready(function(){ $('#myButton').click(function(){ location.href='/Tag/ List?page=1'; }); }); //-- /script !-- the button -- input type=button id=myButton

[jQuery] Best Edit in Place plugin?

2008-07-15 Thread Andy Matthews
at one time. 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 satisfied with the service I

[jQuery] Re: My first jQuery plugin

2008-07-15 Thread Andy Matthews
Pete... There is a built in parent method which does pretty much what you're doing. http://remysharp.com/jquery-api/ Look under parents(). -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of ProggerPete Sent: Tuesday, July 15, 2008 10:41 AM To:

[jQuery] Re: Uncompressed, Minified and Gzipped and Packed

2008-07-16 Thread Andy Matthews
Uncompressed is the raw, human readable, source code for the plugin. Packed takes the source code and runs it through an algorithmn which compresses variable names, methods, code, etc into one big line of javascript. You can find more information about it, and pack your own code, here:

[jQuery] Re: Uncompressed, Minified and Gzipped and Packed

2008-07-16 Thread Andy Matthews
and Gzipped and Packed On Jul 16, 2008, at 7:48 PM, Andy Matthews wrote: Packed takes the source code and runs it through an algorithmn which compresses variable names, methods, code, etc into one big line of javascript. You can find more information about it, and pack your own code, here: http

[jQuery] Re: unsubscribe

2008-07-17 Thread Andy Matthews
Doesn't work that way James. Head over to the Google Groups website to unsubscribe. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of James Smith Sent: Wednesday, July 16, 2008 9:12 PM To: jquery-en@googlegroups.com Subject: [jQuery] unsubscribe unsubscribe

[jQuery] Re: Is there a plugin to zoom in/out an image

2008-07-17 Thread Andy Matthews
Colin... None of those plugins that you mentioned are for zooming in and out of images. They simply display a larger version of the image as an overlay to the page. Lihao... Here's a few that I found with a quick Google search: http://exscale.se/archives/2008/02/11/jquery-image-zoom-plug-in/

[jQuery] Input field: focus=remove text; blur=put it back

2008-07-17 Thread Andy Matthews
Is there a plugin for this by chance? I know it's pretty quick to write, but wanted to find out if someone's already done it better than I could. Also, would toggle() work for this sort of thing? Is there a focus/blur toggle in the jQuery core? Andy

[jQuery] Re: Input field: focus=remove text; blur=put it back

2008-07-17 Thread Andy Matthews
: focus=remove text; blur=put it back I wrote this a while back: http://dev.jquery.com/browser/trunk/plugins/clearonfocus/jquery.clearonfocus .js -- Brandon Aaron On Thu, Jul 17, 2008 at 11:19 AM, Andy Matthews [EMAIL PROTECTED] wrote: Is there a plugin for this by chance? I know it's pretty

[jQuery] Re: Is there a plugin to zoom in/out an image

2008-07-17 Thread Andy Matthews
AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Is there a plugin to zoom in/out an image Andy Matthews wrote: None of those plugins that you mentioned are for zooming in and out of images. They simply display a larger version of the image as an overlay to the page. Ahh OK, It's

[jQuery] Re: New CF programmer - anxious to start using jQuery

2008-08-20 Thread Andy Matthews
Your best bet is to head over to Dan Switzer's blog and read up on the Auto-suggest: http://www.pengoworks.com/workshop/jquery/autocomplete.htm -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of larksys Sent: Wednesday, August 20, 2008 1:07 PM To:

[jQuery] Best way to toggle a form field value

2008-08-21 Thread Andy Matthews
? 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 satisfied with the service I have provided

[jQuery] Re: Best way to toggle a form field value

2008-08-21 Thread Andy Matthews
Anyone have input on this? This code runs, but it doesn't seem to want to toggle the value of the form field at all. It changes it once, then continues using the same value. _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Thursday, August 21

[jQuery] Re: How to set background image when file name contains a space?

2008-08-21 Thread Andy Matthews
Spaces in file names for web apps are asking for trouble. Any way of getting around having the spaces ? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, August 21, 2008 2:03 PM To: jQuery (English) Subject:

[jQuery] Toggling boolean values in form fields

2008-08-21 Thread Andy Matthews
the current value of the selected form field var value = $formEl.val(); // set the new value $formEl.val(!value); alert(value); } Does anyone know why this isn't working right or, at some times, at all? Andy Matthews Senior ColdFusion

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

[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

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

2008-08-27 Thread Andy Matthews
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? Andy Matthews Senior ColdFusion Developer Office: 615.627.9747 Fax: 615.467.6249

[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
. 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 satisfied with the service I have provided, please let me

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

[jQuery] Re: Change event for hidden form field

2008-08-28 Thread Andy Matthews
() { $('$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 change event that I bound does fire correctly when I manually

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

[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

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

[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

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

[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

[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 already has

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

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

[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

[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

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

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

2008-09-10 Thread Andy Matthews
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 - comments please Announcing

[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

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

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

[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? Andy Matthews

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

2008-09-11 Thread Andy Matthews
: 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 combination of codes to get

[jQuery] Re: Oddity with Jquery and Adobe AIR

2008-09-11 Thread Andy Matthews
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 some HTML

[jQuery] Re: Oddity with Jquery and Adobe AIR

2008-09-12 Thread Andy Matthews
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] wrote: Why are you

[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

[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

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

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

[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

[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

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

[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

[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 @any number of letters of numbers 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

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

[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

[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
'). 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 really want to do is to remove that img from the DOM so that it doesn't

[jQuery] Re: Getting width of broken image?

2008-10-29 Thread Andy Matthews
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.offsetWidth500); }); On Oct 29, 11:30 am, Andy Matthews [EMAIL PROTECTED] wrote: I'm loading in a batch of images

[jQuery] Re: Getting width of broken image?

2008-10-29 Thread Andy Matthews
this: $(window).load(function() {     $(img).each(function() {         alert( this.offsetWidth500 );     }); }); -- Josh - Original Message - From: Andy Matthews [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, October 29, 2008 9:24 AM Subject

[jQuery] Re: Getting width of broken image?

2008-10-29 Thread Andy Matthews
the event handler bound before the images themselves are loaded. -- Josh - Original Message - From: Andy Matthews [EMAIL PROTECTED] To: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, October 29, 2008 11:37 AM Subject: [jQuery] Re: Getting width of broken image? Hrm

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

2008-10-30 Thread Andy Matthews
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: jQuery (English) jquery-en@googlegroups.com Sent: Wednesday, October 29, 2008 11

[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

[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

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

[jQuery] Re: span tag is width:80px but is only showing the width of contents?

2008-11-07 Thread Andy Matthews
Span is an inline element and cannot have a width applied to it, unless you display it as a block, which would sort of defeat the purpose of having it inline. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nmiddleweek Sent: Friday, November

[jQuery] Re: span tag is width:80px but is only showing the width of contents?

2008-11-07 Thread Andy Matthews
That's a LOT of markup. You could actually use an input field if you just want to set a background color an some text. It might look like this: input type=text name=name style=width: 100px; / input type=text name=name value=some text style=width: 80px;background: #ff; border: 0px;height:

[jQuery] Re: span tag is width:80px but is only showing the width of contents?

2008-11-07 Thread Andy Matthews
@googlegroups.com Subject: [jQuery] Re: span tag is width:80px but is only showing the width of contents? the most simple way to do this, is to simply apply display:block on the span. span style=display:block;width:80px;background:#00FF00;A/a that will fix it all. Andy Matthews wrote: That's a LOT

[jQuery] Re: animated robot cartoon with jquery

2008-11-07 Thread Andy Matthews
Anthony... Is the robot supposed to do anything other than drive across the screen? I'm looking for buttons which might cause him to do things, but not seeing them. Is this part of what you're working on, and it's just not in place? This is really well done by the way. I might show this to my

[jQuery] Re: animated robot cartoon with jquery

2008-11-07 Thread Andy Matthews
He's only saying that so he can get out of responsibility. :) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Friday, November 07, 2008 12:04 PM To: jQuery (English) Subject: [jQuery] Re: animated robot cartoon with jquery

[jQuery] Re: get form id from button click

2008-11-07 Thread Andy Matthews
After you've clicked the submit button for a form: Var myID = $(this).attr('id'); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of lance123 Sent: Friday, November 07, 2008 3:09 PM To: jQuery (English) Subject: [jQuery] get form id from button

[jQuery] Re: [ANNOUNCEMENT] jquery.timepickr.js: first official release

2008-11-11 Thread Andy Matthews
I think it looks great. Only suggestion I have is to get the selection portion of the plugin hidden until needed. Say, slide it down when the time field is hovered over? It just takes up too much room right now. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: has anyone come across a plugin like this ?

2008-11-11 Thread Andy Matthews
I'd be interested in this as a plugin as well. On Nov 11, 4:21 pm, heysatan [EMAIL PROTECTED] wrote: That's a start. On Nov 10, 4:13 pm, Microbe [EMAIL PROTECTED] wrote: Demand # 1 :o) On Nov 11, 8:57 am, heysatan [EMAIL PROTECTED] wrote: Hi Sean, I built this breadcrumb

[jQuery] Effect like Kwicks plugin

2008-11-17 Thread Andy Matthews
off of it. Thanks peeps Andy Matthews

[jQuery] Re: Effect like Kwicks plugin

2008-11-17 Thread Andy Matthews
- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Monday, November 17, 2008 8:53 AM To: jquery-en@googlegroups.com Subject: [jQuery] Effect like Kwicks plugin I'm looking to achieve an effect similar to that of the Kwicks plugin http://www.jeremymartin.name

[jQuery] Re: Effect like Kwicks plugin

2008-11-17 Thread Andy Matthews
Anyone have any input on this? I'd also like to determine if I can use percentages for the widths of the items. On Nov 17, 9:28 am, Andy Matthews [EMAIL PROTECTED] wrote: Here's a version I've got using the kwicks plugin and divs nested inside the LI tags: http://commadelimited.com/code

[jQuery] Re: Effect like Kwicks plugin

2008-11-17 Thread Andy Matthews
var kwicks = container.children(); Untested. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 17, 2008, at 3:04 PM, Andy Matthews wrote: Anyone have any input on this? I'd also like to determine if I can use percentages

[jQuery] Re: getJSON and twitter

2008-11-18 Thread Andy Matthews
I've noticed this too. It'll work great for a few page reloads, and then pow, error. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ralph Whitbeck Sent: Monday, November 17, 2008 11:57 PM To: jQuery (English) Subject: [jQuery] getJSON and

[jQuery] Re: newbies question

2008-11-19 Thread Andy Matthews
Assuming there's only a handful of characters that might be at the beginning of the test1 string, you could use a regular expression, like so: var test1 = 'a8'; if (test1.match(/^[abcd]8/)) alert('true'); Run those two lines and you should get an alert box saying 'true'. Change

[jQuery] Re: help with hover function

2008-11-19 Thread Andy Matthews
The hover method is your best bet. It might look like this based on your example: $(li a).hover(function(){ alert('mouse over'); },function(){ alert('mouse out'); }); -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of JamesLov

[jQuery] Re: treeview pluging issues - .find(.hitarea)

2008-11-20 Thread Andy Matthews
Without seeing the rest of the code, the .hitarea is a CSS selector for direct descendants. There's generally something on the left of the angle bracket such as : body .hitarea Which would apply ONLY to those objects with a class of hitarea directly inside the body tag. -Original

[jQuery] Re: How can i do Image rollover with simple gamma change?

2008-11-24 Thread Andy Matthews
Yes... You can use the animate method to fade in/out any element by applying opacity. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of expat101 Sent: Monday, November 24, 2008 3:04 PM To: jQuery (English) Subject: [jQuery] How can i do

[jQuery] Re: Callback on $.Post not firing

2008-11-24 Thread Andy Matthews
Is it maybe generating an error? Try converting to a .ajax call so that you've got access to the error method handlers. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rage9 Sent: Monday, November 24, 2008 3:43 PM To: jQuery (English) Subject:

[jQuery] ANN: Books-a-million.com using jQuery

2008-11-24 Thread Andy Matthews
I used to work for the web company who developed the original BAM site, and now a friend of mine is project manager for them. They just released a new version of their website and it uses jQuery: http://www.booksamillion.com/ From the source, it looks like they're really only making use of an

[jQuery] Re: Has jQuery development halted?

2008-11-26 Thread Andy Matthews
Have you reviewed the roadmaps for 1.2 and 1.3? http://docs.jquery.com/JQuery_1.2_Roadmap http://docs.jquery.com/JQuery_1.3_Roadmap andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Bob den Otter Sent: Wednesday, November 26, 2008 8:54 AM

[jQuery] Re: quote standards

2008-11-28 Thread Andy Matthews
Yes. I am. Plus single quoting is slightly faster due to it's lower case nature. No need to hold down the shift key. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of seasoup Sent: Friday, November 28, 2008 2:47 PM To: jQuery (English) Subject:

[jQuery] Re: Adding IMG attributes

2008-12-01 Thread Andy Matthews
The best way (IMO) to know if they're working is to view this site in Firefox with the Web Developers Toolbar. Under the View Source button on the toolbar is an option for view generated source. This will show you the results of the page after any JavaScript has been executed. It'll display new

[jQuery] Re: Double right-click, anyone?

2008-12-01 Thread Andy Matthews
I don't think there's a default double right click event handler, but this wouldn't be that hard to write. Psuedo code --- $('#someElement').rightclick(function(){ totalClicks = 0; if (totalClicks == 2) { // do some stuff totalClicks = 0;

[jQuery] Re: Image rollover using jQuery

2008-12-01 Thread Andy Matthews
That's a terrible way of doing a swap image. That's adding a load of crap into the actual HTML, most likely creating invalid xHTML and if that's the author's solution then you might as well just use Dreamweaver as it will do that for you. A better solution is to use seasoup's method, or one

[jQuery] Re: Ajax to return more values

2008-12-01 Thread Andy Matthews
If you're using a 3rd party JSON library, then you'd just pass in whatever language construct you've got and let the library encode for you. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of me-and-jQuery Sent: Monday, December 01, 2008

[jQuery] Fixed div, content scrolls under it

2008-12-02 Thread Andy Matthews
I'm looking at the possibility of having navigation at the top of the page, pinned to the top. I'd like for the content to scroll UNDER the container. I've seen it before, but forgot to bookmark it to see how it was done. Does anyone have a plugin for this, or know how it's accomplished and can

[jQuery] Re: Fixed div, content scrolls under it

2008-12-03 Thread Andy Matthews
a CSS question, not a jQuery one... stephen On Tue, Dec 2, 2008 at 14:38, Andy Matthews [EMAIL PROTECTED] wrote: I'm looking at the possibility of having navigation at the top of the page, pinned to the top. I'd like for the content to scroll UNDER the container. I've seen it before, but forgot

[jQuery] Re: getting clicked element

2008-12-03 Thread Andy Matthews
Your problem is that you're using the DOM this instead of the jQuery $(this). Read more about that here: http://remysharp.com/2007/04/12/jquerys-this-demystified/ Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of revivedk Sent

<    2   3   4   5   6   7   8   9   >