[jQuery] Re: autocomplete

2009-06-24 Thread Andy Matthews
How about some code, or what it's doing / not doing? We can't help you unless you help us. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of smiling_face Sent: Wednesday, June 24, 2009 8:22 AM To: jQuery (English) Subject:

[jQuery] SOT: Transparent AIR apps with custom chrome (using jQuery)

2009-06-22 Thread Andy Matthews
I just released another blog post in my jQuery and AIR series. http://andymatthews.net/read/2009/06/21/jQuery-and-AIR:-Transparent-AIR-appl ications-with-custom-chrome

[jQuery] Re: The Truth About Manifesting Money

2009-06-19 Thread Andy Matthews
Can someone block this user please? andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Pascale derkertis Sent: Friday, June 19, 2009 11:53 AM To: jquery-en@googlegroups.com; t...@googlegroups.com; viciados_em_liv...@googlegroups.com;

[jQuery] Re: The Truth About Manifesting Money

2009-06-19 Thread Andy Matthews
, 2009, at 3:21 PM, Andy Matthews wrote: Can someone block this user please? blocked. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Andy Matthews
If you haven't already done so, you might increase your fee by a significant amount for having to spin your wheels supporting IE 5.5. Whatever work needs to be done is going to take lots of extra time because you'll have to write everything in plain JS with little support for new functionality.

[jQuery] Palm Pre and jQuery? Is it possible?

2009-06-16 Thread Andy Matthews
I watched a slidedeck today which talked about developing for WebOS, which is all based around JavaScript. Does anyone know if it's possible to use jQuery for WebOS development? andy

[jQuery] Re: How to simulate a human-triggered event?

2009-06-16 Thread Andy Matthews
Assuming the second input field is triggered by a user instigated event, then you could just trigger that event. $('input#change').click(function() { $('input#source').attr('value', 'This is the value changed by a button'); $('something').trigger('blur',fn); }); -Original

[jQuery] AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
Does anyone know of a plugin for jQuery that encapsulates some, or all, of the AIR API? andy

[jQuery] AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
Does anyone know of a plugin for jQuery that encapsulates some, or all, of the AIR API? andy

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
encapsulation, it does provide an abstraction layer: http://www.activerecordjs.org/index.html I've been using the ActiveRecord js implementation in AIR for a while now and it's proven to be solid so far: http://www.activerecordjs.org/record.html - Jack Andy Matthews wrote: Does anyone

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
happen in the app sandbox. I haven't really thought it out, but wondering if maybe you have. Maybe you're looking maybe for something that would just be used in the app sandbox and it'd be up to the end user to create the bridge stuff that they need? - Jack Andy Matthews wrote: Thanks Jack

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
thought about it much? Helper method meaning something that wraps a chunk of air native code up to support some reusable functionality beyond the lower level air stuff. - Jack Andy Matthews wrote: Jack... I just blogged about this idea: http://andymatthews.net/read/2009/06/12/jQuery-and-AIR:-AIR

[jQuery] Re: Question on filter()

2009-06-11 Thread Andy Matthews
Parent is the DOM node which contains the targeted element. So in your example td would be the parent of input. Label would be a sibling of input, or you could use the prev('label') method if you wanted to target the label element. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Get all unique class names

2009-06-11 Thread Andy Matthews
This should get you started: var $allID = $('*[id!=]'); It returns a jQuery object containing all elements that have an id attribute that is not empty. Tested with the following HTML: div id=something h1 id=elsesomething else/h1 pthis is some text right here/p /div img

[jQuery] Re: Get all unique class names

2009-06-11 Thread Andy Matthews
And as a side note, IDs should already be unique on a page. If they're not, then you're going to encounter unexpected issues in your code. Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Thursday

[jQuery] Re: SOT: jQuery UI and AIR - write content to the file system

2009-06-08 Thread Andy Matthews
system Awesome. Good job Andy. []s Marco Antonio On Mon, Jun 8, 2009 at 10:47 AM, Andy Matthews amatth...@dealerskins.com wrote: Just released a new blog post whereby I use jQuery draggable/droppable to write content to the user's file system. I'd love for some of you to check it out. http

[jQuery] Re: can someone translate this syntax ?

2009-06-04 Thread Andy Matthews
That's called ternary syntax: (expression) ? True : false; If the expression evaluates to true, then the true portion is run, else the false portion is run. A real world example: Var total = (myValue == 15) ? 15 * 3 : myValue / 2; Not helpful, but that's how it's used. As for the other

[jQuery] Re: can someone translate this syntax ?

2009-06-04 Thread Andy Matthews
That syntax looks for any ul tag in the context of the div variable (which would have to be a jQuery variable. That might look like this: var div = $('#myDiv'); var ulInDiv = $(ul, div); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf

[jQuery] Re: can someone translate this syntax ?

2009-06-04 Thread Andy Matthews
The || is or. Whichever is true first is the result. So this || that would equal this. But null || that would equal that. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of runrunforest Sent: Thursday, June 04, 2009 11:47 AM To: jQuery

[jQuery] Re: Looking for a plugin similiar to this scriptaculous effect...

2009-06-03 Thread Andy Matthews
-slider.html Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of williampdx Sent: Wednesday, June 03, 2009 10:32 AM To: jQuery (English) Subject: [jQuery] Looking for a plugin similiar to this scriptaculous effect... Hello everyone

[jQuery] Re: Create Ajax Request and edit html request

2009-06-02 Thread Andy Matthews
',data); } ); When your AJAX call returns successfully, you look for a div tag in the context of the returned piece of HTML. Note that this is untested, but it should work just fine. Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery

[jQuery] Re: does selectors $ cache?

2009-05-27 Thread Andy Matthews
No, it does not cache. Each time you make a page query, a new call is made. For better performance, always cache commonly used selectors: $myID = $('#myID'); // $ used for initial var to indicate a jQuery object var text = $myID.text(); var color = $myID.css('color'); Also, you should always

[jQuery] Re: Event behaving

2009-05-27 Thread Andy Matthews
Most likely because the button element doesn't recognize the keypress event. Not every element have the same events. Swap out button for input and try it again, it should work just fine. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf

[jQuery] Re: find reverse

2009-05-27 Thread Andy Matthews
One thing to remember Peter is that jQuery returns an array. You could do a more comprehensive search, then reverse the returned value. Something like this might work: var $myDivs = $('div').reverse; then search through $myDivs for your preferred value. andy _ From:

[jQuery] Re: Rollover Effects instead of alternate images

2009-05-22 Thread Andy Matthews
I believe your CSS is invalid. I don't think you can apply both a class AND an ID in the same selector which is what #base-state.active does. Now #base-state:active might work as that's a pseudo class. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: SOT: execute JS before a specific image loads

2009-05-21 Thread Andy Matthews
me if I'm incorrect about this (please). --John Crout On Wed, May 20, 2009 at 9:51 AM, Andy Matthews amatth...@dealerskins.com wrote: Can I intercept the loading of an image BEFORE it loads? We're looking at using an img tag for inserting stats on our server. Here's what I'm considering

[jQuery] Re: SOT: execute JS before a specific image loads

2009-05-21 Thread Andy Matthews
[mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Thursday, May 21, 2009 7:08 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: SOT: execute JS before a specific image loads John... The original intent was to render an img tag to the page which would load in a subset of my desired

[jQuery] Re: SOT: execute JS before a specific image loads

2009-05-20 Thread Andy Matthews
present, so it would do pretty much the same thing. -- Josh _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Wednesday, May 20, 2009 8:52 AM To: jquery-en@googlegroups.com Subject

[jQuery] Re: help using parent()

2009-05-19 Thread Andy Matthews
You might try just var y = x.parent('div'); Would there ever be another div that could be a parent of one of these TD tags? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of elubin Sent: Tuesday, May 19, 2009 12:47 PM To: jQuery

[jQuery] Re: Better way to trim whitespace from input?

2009-05-13 Thread Andy Matthews
Well, you could try using a text transform CSS attribute on the text field. Then you wouldn't have to perform a toUpperCase using JavaScript. But other than that, looks about as lean as you can get it. andy -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Better way to trim whitespace from input?

2009-05-13 Thread Andy Matthews
: Wednesday, May 13, 2009 12:36 PM To: jQuery (English) Subject: [jQuery] Re: Better way to trim whitespace from input? Thanks. I can't use CSS because it doesn't actually submit the value as uppercase, which is what I need. On May 13, 1:03 pm, Andy Matthews li...@commadelimited.com wrote

[jQuery] Re: Cross Port Jquery Library Call

2009-05-13 Thread Andy Matthews
Can you put the jQuery file inside the secure server's domain, then reference it from there for both sites? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Shadraq Sent: Wednesday, May 13, 2009 1:03 PM To: jQuery (English) Subject:

[jQuery] Re: jQuery too slow on IE!!!

2009-05-12 Thread Andy Matthews
post an example link we can't test it, or examine your code. Care to do that? Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Chandan Sent: Tuesday, May 12, 2009 7:43 AM To: jQuery (English) Cc: prabhub@gmail.com

[jQuery] Re: Disable input button, using wrong HTML code?

2009-05-06 Thread Andy Matthews
Right. The disabled attribute takes an actual string, not a boolean. You can set even set it to true if you prefer: $(#button).attr(disabled,true); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jonathan Vanherpe (T T NV) Sent:

[jQuery] Re: How to get file name

2009-04-28 Thread Andy Matthews
You could also do this: $('img').attr('src').split('/').slice(-1); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of David .Wu Sent: Tuesday, April 28, 2009 3:36 AM To: jQuery (English) Subject: [jQuery] How to get file name img

[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: jQuery countdown with simple percentage bar display?

2009-04-22 Thread Andy Matthews
for changing the color: http://docs.jquery.com/UI/Progressbar#event-change - Richard On Wed, Apr 22, 2009 at 2:35 PM, Andy Matthews amatth...@dealerskins.comwrote: I'm wondering if there exists a jQuery plugin which would display a percentage bar counting down from a specified time

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

[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

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

[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 matthews -Original Message

[jQuery] Re: $(button).Bind(click, function) Vs button onClick=function/

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

[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] 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: div id=linkContainer a href=link 01/a a href=link 02/a /div You might have this code: // all anchor tags inside the linkContainer $('#linkContainer

[jQuery] Re: Shorten the JQuery code

2009-04-16 Thread Andy Matthews
Guess it depends on who the next guy is :) On Apr 16, 2:16 pm, Andy Matthews li...@commadelimited.com 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.   _ From: jquery-en@googlegroups.com

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

2009-04-14 Thread Andy Matthews
You can externalize the document.ready call if you choose, I do it all the time. As for putting it at the bottom of the page, I'd say no. Putting it in an external JS file, with the ready call makes it so that code is not run until the entire DOM is ready anyway. andy -Original

[jQuery] Re: Converting JSON to html output

2009-04-14 Thread Andy Matthews
ColdFusion JSON represent! -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Nando Sent: Tuesday, April 14, 2009 9:51 AM To: jQuery (English) Subject: [jQuery] Re: Converting JSON to html output Sure. Here's the JSON string being

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

2009-04-14 Thread Andy Matthews
? 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 Matthews li...@commadelimited.com wrote

[jQuery] Re: capture user's selection on a html page

2009-04-13 Thread Andy Matthews
Look into the functionality on the New York Times story pages: http://www.nytimes.com/2009/04/14/world/asia/14thai.html?_r=1hp Highlight any block of text inside the story, and you'll get a litle popup question mark icon which links to a search of that string in the NYT database. Pretty handy

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread Andy Matthews
Use Excel? :) -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Matt Wilson Sent: Wednesday, April 08, 2009 9:53 AM To: jQuery (English) Subject: [jQuery] How can I freeze the title row in a table? I have a table with lots of rows,

[jQuery] Re: jQuery within Javascript?

2009-04-07 Thread Andy Matthews
You can use jQuery's each method: $(*[id^='bgChangerAnchor').each(function () { // do some stuff here for each item returned by the match })' -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Edward Ludlow Sent: Tuesday, April

[jQuery] Re: Cool Flash-like Menu Effect

2009-03-31 Thread Andy Matthews
The Lava Lamp plugin is the one you want: http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of DesignerNotCoder Sent: Tuesday, March 31, 2009 8:36 AM To: jQuery (English)

[jQuery] Re: A general Javascript question: duplicate IDs in a document?

2009-03-31 Thread Andy Matthews
It's against the W3c spec for the DOM. The whole point of an ID is that it's unique on the page. Duplicate IDs lead to potential errors. If you need to have more than one of a thing on a page, then use a class. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: A general Javascript question: duplicate IDs in a document?

2009-03-31 Thread Andy Matthews
One problem with that approach is that you're polluting the DOM with invalid markup. Rel is not a valid attribute of the div tag. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Eric Garside Sent: Tuesday, March 31, 2009 1:57

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
It sounds like you've already made up your mind about using HTML/JS (my personal choice), but have you considered Flex in conjunction with LiveCycle Data Services? LCDS makes syncing and managing conflicts SUPER simple. andy -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
of an internal thing)? That would be fine. - Jack Andy Matthews wrote: It sounds like you've already made up your mind about using HTML/JS (my personal choice), but have you considered Flex in conjunction with LiveCycle Data Services? LCDS makes syncing and managing conflicts SUPER simple

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
timestamps, do something). It's unclear to me at this point what the high-performance data sync engine in LCDS would supply. Taking a look at BlazeDS. I see that an Ajax client library can be used to talk to the BlazeDS server. Know how stable BlazeDS is? - Jack Andy Matthews wrote: It's possible

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
for db manipulation or sync. Did I read it right? - Jack Andy Matthews wrote: I don't know the current version, but my company was willing to put the initial release into production for using in a broadcasting application AIR app that I wrote in jQuery/HTML, sort of a one way instant messenger

[jQuery] Re: Pointless but fun jQuery experiment

2009-03-26 Thread Andy Matthews
That's stinkin' awesome! Very cool. I'm not even ask how you did it (I'll just view source). :) -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Kelvin Luck Sent: Wednesday, March 25, 2009 8:22 PM To: jquery-en Subject: [jQuery]

[jQuery] jQuery SWFObject callback function anyone?

2009-03-25 Thread Andy Matthews
Does anyone know if the jQuery SWFObject plugin offers a callback function? I've got some alternate content inside the container which will contain my Flash movie. Problem is that the page takes so long to load that the HTML is visible for about 2 seconds before SWFobject kicks in. I'd like to

[jQuery] Re: Validation plugin: combine functions with strings on remote error

2009-03-24 Thread Andy Matthews
at the end of your function. Jörn On Mon, Mar 23, 2009 at 10:39 PM, Andy Matthews amatth...@dealerskins.com wrote: I'm using the validation plugin to validate a field remotely. The validation portion works great, but I've got a question about the error message if the validation fails. I

[jQuery] Re: Validation plugin: combine functions with strings on remote error

2009-03-24 Thread Andy Matthews
}) as messages. The function is expected to return the formated message, so you can just return the string value you want to display at the end of your function. Jörn On Mon, Mar 23, 2009 at 10:39 PM, Andy Matthews amatth...@dealerskins.com wrote: I'm using the validation plugin to validate a field

[jQuery] Re: Validation plugin: combine functions with strings on remote error

2009-03-24 Thread Andy Matthews
with strings on remote error You shouldn't then use the message-callback for this functionality. Take a look at the highlight-option instead. Jörn On Tue, Mar 24, 2009 at 3:35 PM, Andy Matthews li...@commadelimited.com wrote: Okay... Another question. I'm having an odd issue with the message

[jQuery] Re: Jörn's Tooltip plugin

2009-03-17 Thread Andy Matthews
Noone? On Mar 16, 8:46 pm, Andy Matthews andyandja...@gmail.com wrote: Anyone know if Jörn Zaefferer's Tooltip plugin can be triggered from another event or if it's only when hovering over an element? For example, I could trigger the tooltip on element a FROM element b (or via trigger

[jQuery] Jörn's Tooltip plugin

2009-03-16 Thread Andy Matthews
Anyone know if Jörn Zaefferer's Tooltip plugin can be triggered from another event or if it's only when hovering over an element? For example, I could trigger the tooltip on element a FROM element b (or via trigger()). I'd like to use it as sort of a poor man's modal window message.

[jQuery] Re: How to turn a bulleted list into a pseudo select box

2009-03-10 Thread Andy Matthews
No one has input on this? I know I've seen it done somewhere, I just can't remember where. On Mar 10, 11:30 am, Andy Matthews amatth...@dealerskins.com wrote: I have a bulleted list that I'd like to convert into a pseudo select box. The result would be appear to be a select box, but would

[jQuery] Re: How to turn a bulleted list into a pseudo select box

2009-03-10 Thread Andy Matthews
: Tuesday, March 10, 2009 4:00 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: How to turn a bulleted list into a pseudo select box Andy, can you explain what you're looking for in a different way? I've read it a few times and am not sure what you're looking for. Thx, Jack Andy Matthews

[jQuery] Re: Is jquery suitable for this...

2009-03-02 Thread Andy Matthews
If you're concerned about the size of jQuery, then why not reference the file as cached on Google's servers? http://code.google.com/apis/ajaxlibs/ -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of jojobar Sent: Monday, March 02, 2009

[jQuery] Re: ANNOUNCE: jQuery ListMenu plugin 1.0 from iHwy

2009-03-02 Thread Andy Matthews
Hot damn... Just saw this plugin, and this is fantastically done! Kudos to you and your team. andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jack Killpatrick Sent: Monday, March 02, 2009 3:36 PM To: jquery-en@googlegroups.com Subject:

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
Forgot to mention that I'm using jquery-1.2.3 for this project. andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Friday, February 06, 2009 11:50 AM To: jquery-en

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
...@googlegroups.com] On Behalf Of Andy Matthews Sent: Friday, February 06, 2009 9:50 AM To: jquery-en@googlegroups.com Subject: [jQuery] jqURL plugin throwing JS errors Is there anyone using the jqURL plugin who has noticed errors on page load? All of a sudden I've noticed the following error

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
/p/fbug/issues/detail?id=581 -- Josh _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Friday, February 06, 2009 11:01 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: jqURL plugin

[jQuery] Re: how to change the iframe src

2009-02-06 Thread Andy Matthews
It might be easier to just use the location method. yourTarget.location.href = 'newlink.html'; -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of cindy Sent: Friday, February 06, 2009 3:35 PM To: jQuery (English) Subject: [jQuery] how

[jQuery] Re: slideUp/Down jumpy in Firefox 3 but not in IE7?

2009-02-04 Thread Andy Matthews
The jQuery team freely admits that they optimize for IE more so than the other browsers. So it's distinctly possible that this is true. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Sam H Sent: Wednesday, February 04, 2009 11:28 AM

[jQuery] Re: how to get action attribute from form

2009-02-03 Thread Andy Matthews
That's exactly how you'd do it. One thing I use for debugging is to throw an alert like so: alert($(form[name=myForm]).length); To make sure that your original query is returning a result. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com]

[jQuery] Re: OT: CF-Talk Down?

2009-01-28 Thread Andy Matthews
Neither have I... -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Rick Faircloth Sent: Wednesday, January 28, 2009 2:46 PM To: jquery-en@googlegroups.com Subject: [jQuery] OT: CF-Talk Down? Hi, guys... Pardon the OT, but I'm trying

[jQuery] Re: showing animated gif when redirecting to new a page

2009-01-26 Thread Andy Matthews
You could set an amimated GIF as a background image for the page. Then, as page content loads in, it'll overlap the animation and you wouldn't see it any more. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of misskittyt Sent: Monday,

[jQuery] Re: Book-like UI for jQuery?

2009-01-22 Thread Andy Matthews
Something like this might work for you: http://www.sitepoint.com/examples/jquery/animate4.php andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Richard D. Worth Sent: Thursday, January 22, 2009 12:38 PM To: jquery-en@googlegroups.com

[jQuery] Re: the new whitehouse.gov - jQuery powered

2009-01-20 Thread Andy Matthews
Technically only the last 6 years and 3 months. ;) -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Rick Faircloth Sent: Tuesday, January 20, 2009 2:32 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: the new whitehouse.gov -

[jQuery] Re: Detect If a INPUT value was changed

2009-01-15 Thread Andy Matthews
There is a change event handler. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of gjhames Sent: Thursday, January 15, 2009 10:57 AM To: jQuery (English) Subject: [jQuery] Detect If a INPUT value was changed How to detect if the

[jQuery] Re: Absolute Image location

2009-01-06 Thread Andy Matthews
make mytrial as my main website for real testing. Thank you for the solution,I will get back with what I found for Jetty Server on Grails Andy Matthews-4 wrote: I use a Mac Mini as my development server. It runs Apache and my other servers needed to develop sites locally. When I set up a new

[jQuery] Re: $.click stops working after 2 clicks

2009-01-05 Thread Andy Matthews
How about copying and pasting the code in question. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of revivedk Sent: Monday, January 05, 2009 11:06 AM To: jQuery (English) Subject: [jQuery] Re: $.click stops working after 2

[jQuery] Re: Absolute Image location

2009-01-05 Thread Andy Matthews
local machine. Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of MarkAtHarvest Sent: Monday, January 05, 2009 8:53 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: Absolute Image location awesome, /mytrail/images

[jQuery] Test if a variable is a jQuery object?

2009-01-05 Thread Andy Matthews
How can I test to see if something is a jQuery object, or a normal JavaScript object? andy

[jQuery] Re: Test if a variable is a jQuery object?

2009-01-05 Thread Andy Matthews
the concept of need for this check What's a situation where you would wonder what it is? Are you not in control of your own code or something? On Jan 5, 3:53 pm, Andy Matthews amatth...@dealerskins.com wrote: How can I test to see if something is a jQuery object, or a normal JavaScript

[jQuery] Re: How to set the HTML background

2009-01-02 Thread Andy Matthews
That's because you can't set the background color of the HTML tag. It doesn't have that attribute. Even if you could do that, one would override the other. What you probably want to do is to set the bg of the body tag, then set the bg of a container INSIDE the body like so: body div/div

[jQuery] Re: JQUERY .POST PROBLEM

2009-01-02 Thread Andy Matthews
I'm a fan of this approach: console.log('[' + data.length + ']') andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Michael Geary Sent: Friday, January 02, 2009 4:23 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: JQUERY

[jQuery] Re: Serious bug in JQuery

2008-12-22 Thread Andy Matthews
Care to share some code? Have you done your debugging to determine what line of your code is causing the error from jQuery? Have you posted this bug to the jquery bug mailing list? andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf

[jQuery] Re: [OT] Client side web application with jQuery

2008-12-17 Thread Andy Matthews
You could use this base64 library to check an encrypted password: http://www.webtoolkit.info/javascript-base64.html Any login done solely with client side code is going to be inherently insecure. If that's part of your requirement, then you'll just have to work around it. andy -Original

[jQuery] Re: HowTo: Trigger error callback in ajax request

2008-12-17 Thread Andy Matthews
I think the problem is that you're expecting a different sort of error than what the AJAX call is expecting. That method only looks for an error in what it's trying to do. The server process is solely separated from the JS process. You could check for a string of error on success, then pass that

[jQuery] Re: HowTo: Trigger error callback in ajax request

2008-12-17 Thread Andy Matthews
Have you tried 'throw' yet? http://www.w3schools.com/js/js_throw.asp andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Rob Wilkerson Sent: Wednesday, December 17, 2008 8:26 AM To: jQuery (English) Subject: [jQuery] HowTo:

[jQuery] Re: JQuery is really a nice tool

2008-12-12 Thread Andy Matthews
No jQuery on that page. It's just using a collection of dHTML scripts found online. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Sid Sent: Friday, December 12, 2008 12:31 PM To: jQuery (English) Subject: [jQuery] JQuery is really a

[jQuery] Re: pleeease heeelp me nowwwwww

2008-12-10 Thread Andy Matthews
For future reference, you'll get a lot more sympathy, and more help, if you use a more descriptive subject line. Glad you got help with your problem. andy -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday,

[jQuery] Re: Need Open/Shut Function

2008-12-10 Thread Andy Matthews
jQuery has built in show() / hide() methods. The syntax would look something like this: $('#someElement').show(); $('#someElement').hide(); Where someElement was a container with an ID. andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Blomstrom

[jQuery] Re: Need Open/Shut Function

2008-12-10 Thread Andy Matthews
As a side note, I personally find your ms free note a little distasteful. I'm no MS fanboy, but it seem a little self-serving to post that note. andy _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of David Blomstrom Sent: Wednesday, December 10, 2008 12:11 PM

[jQuery] Re: Need Open/Shut Function

2008-12-10 Thread Andy Matthews
That's the best example I have, as there's currently no content in my Links open/shut script. As a former teacher, I found some of the things Microsoft did to my students distasteful. I decided to speak out, and I never apologize for speaking the truth. On Wed, Dec 10, 2008 at 10:23 AM, Andy

[jQuery] Re: Need Open/Shut Function

2008-12-10 Thread Andy Matthews
Just FYI, you can condense Hector's code into this: $(\'#MSFree\').hover(function(){ // do something on mouse over $(\'#menu2\').show(); },function(){ // do something on mouse out $(\'#menu2\').hide(); }); It's a little more compact, and easier to read. andy matthews

  1   2   3   4   5   6   7   8   9   >