Re: [jQuery] jQPie - 0.1 release

2007-03-24 Thread Matt Stith
Nope, taconite is so that you can use XML to modify the DOM, something like or something. jQPie is to give javascript an interface to interact more closely with PHP, for example having javascript call a php function via ajax, and jQPie will format the result of the php function how you like, for

Re: [jQuery] Plugin Requests

2007-03-24 Thread Matt Stith
Thats not a very good way to do it IMO, since other libraries like Prototype use the $ function. I would check for unsafeWindow.jQuery, since all jquery pages should have that set. On 3/24/07, SeViR <[EMAIL PROTECTED]> wrote: This is a simple GreaseMonkey user script file to get jQuery version

Re: [jQuery] hoverIntent r3 -- animate vs. hoverIntent

2007-03-24 Thread Brian Cherne
If the mouse is in the target zone and you're moving it, the mouseOver event should not be triggered. You can test this by mousing over just one of the "target" LI tags. If you stay within that LI and keep your mouse moving the sensitivity threshold is never met (because for sake of testing I redu

[jQuery] [OT] A Good Cause: AIR (Accessibility Internet Rally)

2007-03-24 Thread Kenneth
I know many of you here share my desire to produce accessible websites, so what more can we do though, besides what that which we practice in our current roles? Well, for those of you who would like to put your design || development skills to good use by helping a non-profit organization (NPO), yo

Re: [jQuery] hoverIntent r3 -- animate vs. hoverIntent

2007-03-24 Thread Dan G. Switzer, II
Brian, >From my playing around it seems that it gets triggered because mouse is in the target zone at each check (even though it's been moved around a lot.) Does the bug go away if you lower the interval way down? -Dan _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Beh

Re: [jQuery] Plugin Requests

2007-03-24 Thread SeViR
This is a simple GreaseMonkey user script file to get jQuery version of any website. The script add a new menu option in Firefox > Tools > GreasyMonkey > Commands > JQVersion I don't need any firefox addon if I can make it ;-P getjqueryversion.user.js - // ==UserScript== // @name

[jQuery] hoverIntent r3 -- animate vs. hoverIntent

2007-03-24 Thread Brian Cherne
I've re-written hoverIntent since the last time I posted. It now has configurable options, a mouseOut timeout, and is $-friendly. However, not all is good in the land of hoverIntent. I've been struggling with this one bug for a while (hence the delay since my last update) and I've finally (sucked

Re: [jQuery] jQPie - 0.1 release

2007-03-24 Thread Richard Thomas
I haven't looked at taconite but it looks similiar On 3/24/07, Mikael Noone <[EMAIL PROTECTED]> wrote: > Isnt this like taconite?? > > > On 3/24/07, Richard Thomas <[EMAIL PROTECTED]> wrote: > > > > First real release, includes an easy to use autocompleter and table > > builder/sorter both powered

[jQuery] Accessing an element's :hover colour?

2007-03-24 Thread Yansky
How would I go about getting an element's :hover colour with Javascript? I've tried the following, var theLink = document.getElementsByTagName('a')[3];­ document.defaultView.getComputedSt­ yle(theLink, 'hover').getPropertyValue('color');­ but that didn't work because getComputedStyle specifica

Re: [jQuery] NOTICE: Moving to Google Groups

2007-03-24 Thread Yansky
Ah right. No probs then. Matt Stith wrote: > > The move isnt finished yet, google still needs to approve us. > > On 3/24/07, Yansky <[EMAIL PROTECTED]> wrote: >> >> >> I posted a message on the google groups page but it hasn't shown up. I'm >> registered properly, so I'm not sure what happened.

Re: [jQuery] jQPie - 0.1 release

2007-03-24 Thread Mikael Noone
Isnt this like taconite?? On 3/24/07, Richard Thomas <[EMAIL PROTECTED]> wrote: First real release, includes an easy to use autocompleter and table builder/sorter both powered by json. Fully working examples in php provided, Was not working in IE before, all examples/code have now been checked

Re: [jQuery] select box - options manipulation

2007-03-24 Thread Klaus Hartl
MARIO MOURA schrieb: > Do you have a example? > > $("#edit-taxonomy-6").change("value","0"); > > I am trying back to value=0 > > Regards > > macm Try this: $('#edit-taxonomy-6').bind('change', function() { this.value = 0; }); That will select the option that has the value 0. Although th

Re: [jQuery] google takes over my error div!!!

2007-03-24 Thread Klaus Hartl
Dan G. Switzer, II schrieb: > Jörn, > >> Thanks for investigating. It would be easy to make the element used for >> error messages customizable. What would you recommend as the default? >> The Google Toolbar problem can occur everywhere, so the label-default >> seems like a bad idea now. > > Well

Re: [jQuery] return false

2007-03-24 Thread Kristinn Sigmundsson
tuita de SPAMfighter para usuarios > > privados. > > Ha eliminado 6225 correos spam hasta la fecha. > > Los abonados no tienen este mensaje en sus correos. > > ¡Pruebe SPAMfighter gratis ya! > > > > ___ > > jQuer

Re: [jQuery] getting the selectedIndex of a dynamic select

2007-03-24 Thread Brian Cherne
var valueOfSelected = $("#list [EMAIL PROTECTED]").val(); And, instead of onClick you probably want to use onChange. Note, when you are in the function "this" refers to the DOM object that fired the event (that has selectedIndex). When you wrap it in $(this) you then have the jQuery object (whic

Re: [jQuery] How can I get a second children element?

2007-03-24 Thread Karl Swedberg
$("#imagefields").append( $(".group-image":nth-child(2)) ); Hi Mario, I know you were referring to the other Karl below, but if you don't mind, I'll jump in with an answer (I posted another response to your original post, because my email program didn't have it threaded with the the replies

Re: [jQuery] How can I get a second children element?

2007-03-24 Thread Karl Swedberg
Hi Mario, To get the second child, you can use the :nth-child(n) pseudo-class: $('FIELD:nth-child(2)') If you want all of the fields after the third, you can use :gt(n) $('FIELD:gt(2)') More fun ways to select elements can be found in the docs: http://docs.jquery.com/DOM/Traversing Also

Re: [jQuery] NOTICE: Moving to Google Groups

2007-03-24 Thread Matt Stith
The move isnt finished yet, google still needs to approve us. On 3/24/07, Yansky <[EMAIL PROTECTED]> wrote: I posted a message on the google groups page but it hasn't shown up. I'm registered properly, so I'm not sure what happened. I got a confirmation message after I posted too. (I'm using t

[jQuery] getting the selectedIndex of a dynamic select

2007-03-24 Thread narven
Hi, Im having some problems getting the value of selectedIndex of a select box. im using... // this is populated dynamic using ajax $(function() { $('#list').bind('click', function() { alert( $(this).selectedIndex ); }); }) But always gives me un

Re: [jQuery] NOTICE: Moving to Google Groups

2007-03-24 Thread Yansky
I posted a message on the google groups page but it hasn't shown up. I'm registered properly, so I'm not sure what happened. I got a confirmation message after I posted too. (I'm using the nabble forum to post this message) John Resig wrote: > > Hi Everyone - > > As you've probably noticed, t

Re: [jQuery] return false

2007-03-24 Thread Sebastián V . Würtz
¡Pruebe SPAMfighter gratis ya! > > ___ > jQuery mailing list > [EMAIL PROTECTED]://jquery.com/discuss/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/ __ NOD32 2142 (2

[jQuery] Accessing an element's :hover style?

2007-03-24 Thread Yansky
How would I go about getting an element's :hover color with jQuery? I've tried the following non-jQuery version, but it seems to only return the element's regular color, not the :hover color: var theLink = document.getElementsByTagName('a')[3]; document.defaultView.getComputedStyle(theLink, 'hove

Re: [jQuery] Google Groups Move Delayed

2007-03-24 Thread John Resig
Unfortunately, all of the member information hasn't moved over yet. Google said it would be 1-2 days - it's obviously taking them a bit longer. --John On 3/24/07, Su <[EMAIL PROTECTED]> wrote: > Just following up on this bit, it seems like the list is now active at > Groups(I've received my first

[jQuery] JS loading problem with FF

2007-03-24 Thread Kristinn Sigmundsson
Hi I got a little problem on a site I'm working on, the problem is that in FF, it mostly takes for 15sec for some files to load, and I get this error after load: illegal character http://www.haddock.ffs.gu.se/js/default.packed.js Line 1 A [EMAIL PROTECTED]"ß5•˜%(c)ñqvŒ°vqF']ÆuA\n The problem

Re: [jQuery] JQuery.com problem

2007-03-24 Thread John Resig
Yeah, the server is having all sorts of problems - this is why I'm trying to get everything off of it (mailing lists, code, static files). In an attempt to break the load. I just finished moving all of jQuery's code and static files to Amazon S3 yesterday - but the mailing list is still waiting fo

Re: [jQuery] Inserting info into opening doc

2007-03-24 Thread Klaus Hartl
Shelane Enos schrieb: > With plain javascript I can do this from a child window: > > opener.document.getElementById("resumemessage").innerHTML = "Resume uploaded > " + filename; > > What I'd like to do with jquery is > $('opener.#resumemessage).load(myprocesspage.lasso, {pageID: 25}); > > Is thi

Re: [jQuery] Google Groups Move Delayed

2007-03-24 Thread Su
Just following up on this bit, it seems like the list is now active at Groups(I've received my first abridged update), but it's still not letting me opt for individual messages. I just get a cryptic "There was a problem with your choice..." error. Useful! On Mar 22, 1:36 pm, "John Resig" <[EMAIL P

Re: [jQuery] How can I get a second children element?

2007-03-24 Thread MARIO MOURA
Evan Thanks a lot your solution works for me. My real example is: $("#imagefields").append( $(".group-image").children().get(2) ); But I am curious about what Karl said I tried a lot of things but I believe I have a error syntax. $("#imagefields").append( $(".group-image":2-child(n)) ); or I t