[jQuery] Re: The Balance between PHP and JQuery

2009-06-25 Thread Andy Matthews
In my opinion, if you control the server side code, it's always best to do it there, rather than depend on jQuery for that. For several reasons. 1) Since PHP has to write the code anyway, tacking an extra few chars is no big deal 2) Users without JS will see the correct version. 3) No need to mai

[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

[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
, 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: 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; django-us...@

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

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

[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: AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
ot; (I think). If that's the case, have you 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:/

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
and non-app sandbox, since all the direct air API access can only 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 crea

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
On Jun 12, 11:52 am, Jack Killpatrick wrote: > This may be of interest, though it's not jQuery 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 >

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

[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: something else this is some text right here It returns an array: [div#something, h1#else,

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

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

[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

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

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

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

2009-06-03 Thread Andy Matthews
/coda-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 eve

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

2009-06-02 Thread Andy Matthews
} ); 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...@googlegroups.com] On Beh

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

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

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

[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 [mailto:jquery...@googlegroups.com]

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

2009-05-21 Thread Andy Matthews
o modify the IMG from the section - it won't exist. Instead, add your own IMG element with jQuery instead of document.write. -Mike _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Thursday, May 21, 2009 7:08 AM To: jquery-en@googlegroups

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

2009-05-21 Thread Andy Matthews
the page is made, is something that can be assumed as consistent, from request to request, even from the same user. Correct me if I'm incorrect about this (please). --John Crout On Wed, May 20, 2009 at 9:51 AM, Andy Matthews wrote: Can I intercept the loading of an image BEFORE it load

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

2009-05-20 Thread Andy Matthews
the "extra stuff"? It won't fire if they don't have > javascript present, so it would do pretty much the same thing. > > -- Josh > > > > _____ > From: jquery-en@googlegroups.com [mailto:jquery...@googlegrou

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

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

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

2009-05-13 Thread Andy Matthews
jckos Sent: 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"

[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 [mailto:jquery...@googlegro

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

2009-05-12 Thread Andy Matthews
t as you didn't 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)

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

[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: 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: 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: 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] 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: 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] 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: 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: 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: 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: 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
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: 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: $("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: 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: 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: 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 retu

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

[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=1&hp 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 a

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

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

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

[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 [mailto:jquery...@google

[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: OT: AIR sync?

2009-03-27 Thread Andy Matthews
ything specific 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 w

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
the design thoughts... that's roughly what we're thinking, too (check 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

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
minimal way we could use it just for the sync aspect (ie as more 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 >

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

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

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

[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 wrote: > Okay... > > Another question. I'm having an odd issue with the

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

2009-03-24 Thread Andy Matthews
unction as a message happens all the time when using $.format("... {0}") 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 w

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

2009-03-24 Thread Andy Matthews
you want to display at the end of your function. Jörn On Mon, Mar 23, 2009 at 10:39 PM, Andy Matthews 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.

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

2009-03-17 Thread Andy Matthews
Noone? On Mar 16, 8:46 pm, Andy Matthews 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 tr

[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
.com] On Behalf Of Jack Killpatrick Sent: 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

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

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

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

[jQuery] Re: how to change the iframe src

2009-02-06 Thread Andy Matthews
It might be easier to just use the location method. .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 to change th

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
to the > bottom of this link: > > http://code.google.com/p/fbug/issues/detail?id=581 > > -- Josh > > > > _ > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > Behalf Of Andy Matthews > Sent: Fr

[jQuery] Re: jqURL plugin throwing JS errors

2009-02-06 Thread Andy Matthews
_ > From: jquery-en@googlegroups.com [mailto:jquery...@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 pl

[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

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

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

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

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

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

[jQuery] Re: teaching jquery instead of javascript ?

2009-01-08 Thread Andy Matthews
I'd look at teaching jQuery as a 2nd level course. Once you've covered at least the basics of JavaScript, then you can get into jQuery. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Klaus Hartl Sent: Thursday, January 08, 2009 3:38 P

[jQuery] Re: Tutorials or examples of jQuery and ColdFusion?

2009-01-08 Thread Andy Matthews
I've used CF and jQuery a lot. Did you have something specific in mind? I'd be happy to share some code with you. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Rick Faircloth Sent: Thursday, January 08, 2009 11:45 AM To: jquery-en@go

[jQuery] Re: Absolute Image location

2009-01-06 Thread Andy Matthews
al 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 site I do >

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

2009-01-05 Thread Andy Matthews
ble is a jQuery object? I'm trying to grasp 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" wrote: > How can I test to see if something is a jQuery object, or a normal > JavaScript object? > > andy

[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: $.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 clicks

[jQuery] Re: Absolute Image location

2009-01-05 Thread Andy Matthews
chine. 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/down.gif

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

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

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

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

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

[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: 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: Need Open/Shut Function

2008-12-10 Thread Andy Matthews
#menu2').show(); }); $('#MSFree').mouseout(function() { $('#menu2').hide(); }); -Hector On Wed, Dec 10, 2008 at 10:35 AM, David Blomstrom <[EMAIL PROTECTED]> wrote: Here's a condensed version of my code... VMicrosoft-Free This website was designed.

  1   2   3   4   5   6   7   8   9   10   >