Re: [jQuery] Global AJAX handlers

2006-09-25 Thread Jörn Zaefferer
Mike, I agree, right now there is no override mechanism. It would be pretty easy to add one though -- add an optional boolean argument (supressGlobalResponders or something) on the ajax function, and then check its value before invoking the global responders. You could then utilize a global

Re: [jQuery] Global AJAX handlers

2006-09-25 Thread Mike Alsup
Andre, Zörn, Those are both good ideas for overriding the global callbacks. I'd like that capability. Mike ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] $().load didn't works ini IE6

2006-09-25 Thread Dan Atkinson
While I'm I can't answer your problem, I can say that load works fine for me in IE6, and for it not to work would have been noticed much sooner as it's quite a widely used part of jQuery. The test suite also confirms that it's working as well. Ok So... name... It's used further up the

Re: [jQuery] Suckerfish

2006-09-25 Thread Dan Atkinson
How about having a list as an item of the sublist? ul liMenu 1/li liMenu 2 ul liMenu 2.1/li liMenu 2.2/li /ul /li liMenu 3/li liMenu 4/li /ul I'm not overly sure about Suckerfish though, as I don't have it to hand. But most JS-based menu systems work using lists,

Re: [jQuery] Ajaxian Framework Results

2006-09-25 Thread Dan Atkinson
Bah... This is a popularity contest! All this shows it that: 43% of folks love code bloat 33% love even more code bloat, because it does one thing that's cool 19% enjoy unnecessary functions that they'll never use 12% of people are kidding themselves 11% of people saw the name and thought 'cool'

Re: [jQuery] Ajaxian Framework Results

2006-09-25 Thread Yehuda Katz
This just shows that we need to do something to push up the profile of jQuery. We're obviously making progress, but Prototype and Scriptaculous are the king and queen at the moment.Anyone up for a jQuery marketing side-project? -- YehudaOn 9/25/06, Dan Atkinson [EMAIL PROTECTED] wrote: Bah...This

Re: [jQuery] Blips in $(div).hide(); when using $(document).ready

2006-09-25 Thread Dan Atkinson
Julius Lucks wrote: The app throws up about 10 or so of these divs and what I see is the textareas appear and then blip out of existence. That could make it slow. You're expecting it to perform '10 or so simultaneous operations locally. Hide works (as I understand), by first switching the

Re: [jQuery] Ajaxian Framework Results

2006-09-25 Thread Fil
@ Yehuda Katz [EMAIL PROTECTED] : This just shows that we need to do something to push up the profile of jQuery. We're obviously making progress, but Prototype and Scriptaculous are the king and queen at the moment. I'm not sure it stays like this for long. jQuery is only, what, one month old?

Re: [jQuery] Ajaxian Framework Results

2006-09-25 Thread Dan Atkinson
Always. I think more publicity of the cool side of jQuery needs highlighting. Games, chat clients, guerilla advertising... It's all cool. wycats wrote: This just shows that we need to do something to push up the profile of jQuery. We're obviously making progress, but Prototype and

Re: [jQuery] Form plugin - move to core?

2006-09-25 Thread Klaus Hartl
Hi Mike, I too vote for putting the form plugin to the core. The recent increase in questions about form serialization and form submission makes me wonder the following about why the form plugin is not used more: 1. Is it not meeting your needs? No. 2. Did you not know it exists?

Re: [jQuery] Ajaxian Framework Results

2006-09-25 Thread Dan Atkinson
Fil wrote: jQuery is only, what, one month old? Try thirteen months! :) It moved from beta to stable last month, but it has been around for over a year now. -- View this message in context: http://www.nabble.com/Ajaxian-Framework-Results-tf2324688.html#a6485512 Sent from the JQuery

[jQuery] XPath Axes: ancestor(-or-self) / parents / descendent / children

2006-09-25 Thread George Adamson
I'm interested to know how to extend the selector syntax to accept things like axis definitions etc. (I know from the forum that we should be using the .parents() methods etc but I'd like to extend the selector syntax myself.) While the .parent() and .children() methods etc work very well when

[jQuery] find 2 different element types but keep dom order?

2006-09-25 Thread Boonstra, T.H. \(Tim\)
Hi all, I want to selecting all input and select elements that are not hidden, while remaining there original dom order.. but when i use$('input','select') or .find('input','select') it first adds all input elements and then all select elements, which causes me to lose the dom order..

Re: [jQuery] Form plugin - move to core?

2006-09-25 Thread Mike Alsup
BTW, curious to know answers to Mike's questions about the deserialize plugin Hi Ashutosh, Regarding your question, 1. I think your deserializer is a great plugin and I expect to use it in the future but I haven't had an actual use case for it yet. So it hasn't been a matter of it not

[jQuery] Interface Sortables callback

2006-09-25 Thread Kevin Bosak
I'm attempting to use Sortables to sort a list of images but can't get the onchange callback to work. I am able to drag and drop the elements just fine. I've also tried other callbacks like onDrag and tried 'onChange' as well. Here is my code: $('ul').Sortable({ onchange:

Re: [jQuery] Form plugin - move to core?

2006-09-25 Thread Rey Bango
Hi Jorn, ...As long as this is introduced with a major release with proper release notes, it shouldn't be a big problem to upgrade. I disagree with this statement. If my codebase is dependent on a specific type of return value from a method and I've used that method in numerous places in

Re: [jQuery] Form plugin - move to core?

2006-09-25 Thread Dave Benjamin
On Mon, 25 Sep 2006, Rey Bango wrote: I refer back to EasyDOM that, at the moment, will only work on v1.0a. The upgrade to v1.0.1 broke the functionality. Further, I recall an email that I sent out early this month that referred to the set() method, which is used in EasyDOM, to which John

Re: [jQuery] find 2 different element types but keep dom order?

2006-09-25 Thread Mike Alsup
I want to selecting all input and select elements that are not hidden, while remaining there original dom order.. You can do that with expressions. I think this will work: $('#myForm :visible') Mike ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Form plugin - move to core?

2006-09-25 Thread Rey Bango
Thanks Dave. I think as long as its not a regular occurence (breaking backward compatibility) and its well thought out, then it shouldn't be an issue. Rey... Dave Benjamin wrote: On Mon, 25 Sep 2006, Rey Bango wrote: I refer back to EasyDOM that, at the moment, will only work on v1.0a.

Re: [jQuery] $().load didn't works ini IE6

2006-09-25 Thread Donny Kurnia
On 9/25/06, Dan Atkinson [EMAIL PROTECTED] wrote: While I'm I can't answer your problem, I can say that load works fine for me in IE6, and for it not to work would have been noticed much sooner as it's quite a widely used part of jQuery. The test suite also confirms that it's working as

Re: [jQuery] Visual jQuery Magazine

2006-09-25 Thread Yehuda Katz
Expect a corrected copy (call it issue 1.01) tonight.-- YehudaOn 9/23/06, Klaus Hartl [EMAIL PROTECTED] wrote:Yehuda Katz schrieb: One of the nice things about having a *digital* publication is that I can make these changes :). Expect an updated copy of the Visual jQuery Magazine in a few days

[jQuery] InnerFade plugin in live site

2006-09-25 Thread Armand Datema
http://www.politieknieuws.nl/Home/tabid/36/Default.aspx just added the innerfade plugin to the politieknieuws site. Just below the tabs it rotates to the most read newsitems on the portal thanks for the plugin, now all i need to remove is the scrollign photobar with jquery and the site is even

[jQuery] editInPlace Plugin

2006-09-25 Thread Yehuda Katz
Hey guys,I finally got around to doing a bit of documentation on my editInPlace plugin. You can check it out at http://jquery.com/docs/Plugins/editInPlace/ There are two major benefits of my plugin over the official one:* Gives submit and cancel buttons* Supports checkboxes and select boxes--

[jQuery] Cool technique

2006-09-25 Thread Yehuda Katz
In my editInPlace script, I do:$(editable).animate({opacity: .5}, normal, function() {$(editable).animate({opacity: 1}, normal)});which results in a slow emphasis. I think it works better than the yellow-fade for emphasizing success of an update. What do you guys think?-- Yehuda KatzWeb Developer

Re: [jQuery] InnerFade plugin in live site

2006-09-25 Thread dizzledorf
Armand, Looks good, but it's tough to click on a particular item as the ticker cycles awfully fast... Maybe consider using the newsTicker plugin: http://www.texotela.co.uk/code/jquery/newsticker/ It's very lightweight and pauses on hover, so individual items can be frozen, allowing for easier

Re: [jQuery] Interface Sortables callback

2006-09-25 Thread Kevin Bosak
Got this worked out. I didn't realize I needed id's on the LI elements.On 9/25/06, Kevin Bosak [EMAIL PROTECTED] wrote:I'm attempting to use Sortables to sort a list of images but can't get the onchange callback to work. I am able to drag and drop the elements just fine. I've also tried other

[jQuery] Digg push

2006-09-25 Thread Yehuda Katz
Sorry to be doing this, but I just want to try one last round of promotion.The Visual jQuery Magazine is about to fall off the bottom of the front page of the Programming Category. To try to forestall that for a bit, please digg it if you haven't already (and ask your friends to do so as well!).

Re: [jQuery] Cool technique

2006-09-25 Thread Konstantin Käfer
I don't think you should symbolize success or failure through colors or subtle effects. People with disabilities can't easily recognize that. Better create a text that shows Saving successful. and obeys the font size the user has set (and voiceover etc.). Am 25.09.2006 um 17:11 schrieb

Re: [jQuery] Digg push

2006-09-25 Thread Dan Atkinson
I should point out that, after Digg's recent changes, it'll quite easily spot 'cartels' which regularly vote on the same stories. If the same people digg the same articles, then what'll happen is that, by issue 3 - 6 or so, our votes will be nigh on worthless as they will be reweighted to

Re: [jQuery] Digg push

2006-09-25 Thread David Olinsky
Yehuda, next time put a combination of 'Most Amazing Video Ever!', 'Ruby', 'Free', 'Ajax' and 'OSX' and you'll never move off the front page :) Again, nice work on the magazine. -- -David Quoting Yehuda Katz [EMAIL PROTECTED]: Sorry to be doing this, but I just want to try one last round

Re: [jQuery] Cool technique

2006-09-25 Thread Dan Atkinson
The title was 'cool', not 'accessible'! ;-) You're probably right, but somehow text with large letters saying 'SUCCESS' or 'FAILURE' just don't seem 'cool' enough. Konstantin K?fer wrote: I don't think you should symbolize success or failure through colors or subtle effects. People with

Re: [jQuery] Cool technique

2006-09-25 Thread Will Jessup
Dan , Just append the DOM w/ a paypal donate button. Ajax has been successfully implemented, now send me cash to continue The title was 'cool', not 'accessible'! ;-) You're probably right, but somehow text with large letters saying 'SUCCESS' or 'FAILURE' just don't seem 'cool' enough.

Re: [jQuery] Digg push

2006-09-25 Thread Andy Matthews
Well hopefully, by that time the magazine will have taken off on it's own and it won't be a problem. Good point though. !//-- andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. [EMAIL PROTECTED] 615.370.1530 x737 --//-

Re: [jQuery] Cool technique

2006-09-25 Thread Dan Atkinson
Lol! That's so cruel! Will Jessup wrote: Dan , Just append the DOM w/ a paypal donate button. Ajax has been successfully implemented, now send me cash to continue The title was 'cool', not 'accessible'! ;-) You're probably right, but somehow text with large letters saying

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread Yehuda Katz
Yup. When I get some time, I may add a plugin section to visualjQuery.com with some of my plugins (I have some other cool stuff I worked on for a VERY AJAXy project I did).-- Yehuda On 9/25/06, Dan Atkinson [EMAIL PROTECTED] wrote: Coolaid!It's just a damned shame that the wiki chews the code

Re: [jQuery] Digg push

2006-09-25 Thread Yehuda Katz
We should work up a digg-strategy based on the new digg algorithm. I was quite happy about the diggs, but I know it could have been a lot better.At some point, I'll do a site redesign, and we can digg that up. -- YehudaOn 9/25/06, David Olinsky [EMAIL PROTECTED] wrote: Yehuda, next time put a

Re: [jQuery] Cool technique

2006-09-25 Thread Yehuda Katz
BTW: I think Accessibility is super-important (there will even be an article in Issue 2 of the Magazine about it), but it's a bit foolish to never use any effects because of accessibility concerns. It's pretty much a given that the way the Accesible functionality will work will be less

Re: [jQuery] Cool technique

2006-09-25 Thread Dan Atkinson
If someone writes a plugin which determines that the user is partially sighted, then I'll be there with alert boxes and size 128 fonts on my site*. And cool stuff for the rest. Has someone written something like this? *Please note, there will be no size 128 fonts on my site. But, I'll cater for

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread Mike Rubits
Looks great! It would be a cool addition if there were a way to edit everything inside a form; sort of like the ajaxSubmit feature but for editing, and have one Submit button at the bottom. It's probably a bit out of the scope of this plugin, but would be a cool idea nonetheless. At least I'd use

Re: [jQuery] $().load didn't works ini IE6

2006-09-25 Thread Michael Geary
I need help to make the following code works in IE : document.writeln(select name=\+name+\ id=\+name+\+((multiple!=null)? +multiple:)+); var tablename = some_table; $(#+name).load(table_query.php, {table: tablename}); document.writeln(\/select); Script

Re: [jQuery] $().load didn't works ini IE6

2006-09-25 Thread Michael Geary
From: Dan Atkinson Also, I'm unsure why you want to use document.writeln as I find jQuery's methods much more compact and neat. I don't know if it relates to this specific code, but there are things you can do with document.writeln that you can't do with DOM manipulation. Specifically, the

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread dizzledorf
Yehuda, I like it! But I keep getting null for the value parameter when I pass it onto my PHP processor. ID comes through OK... Any ideas? My code, simply: $(document).ready(function() { var url=test_proc.php; $(.editable).editInPlace(url); }); (assign to all elements with

Re: [jQuery] Cool technique

2006-09-25 Thread Yehuda Katz
Nice anecdote.You can check out a demo here:http://www.visualjquery.com/plugins/animate.html-- Yehuda On 9/25/06, Michael Geary [EMAIL PROTECTED] wrote: From: Yehuda Katz In my editInPlace script, I do: $(editable).animate({opacity: .5}, normal, function(){$(editable).animate({opacity: 1},

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread Yehuda Katz
Do you have a link?-- YehudaOn 9/25/06, dizzledorf [EMAIL PROTECTED] wrote: Yehuda,I like it!But I keep getting null for the value parameter when I pass itonto my PHP processor.ID comes through OK...Any ideas?My code, simply:$(document).ready(function() { var

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread dizzledorf
http://www.engagingdesigns.com/sandbox/editinplace/ Thanks, --DIZZLE wycats wrote: Do you have a link? -- Yehuda On 9/25/06, dizzledorf [EMAIL PROTECTED] wrote: Yehuda, I like it! But I keep getting null for the value parameter when I pass it onto my PHP processor. ID comes

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread Yehuda Katz
What's up with the [EMAIL PROTECTED] stuff in the value section of the code?-- YehudaOn 9/25/06, dizzledorf [EMAIL PROTECTED] wrote: http://www.engagingdesigns.com/sandbox/editinplace/Thanks,--DIZZLEwycats wrote: Do you have a link? -- Yehuda On 9/25/06, dizzledorf [EMAIL PROTECTED] wrote:

[jQuery] TableSorter Preview: Filtering.

2006-09-25 Thread Christian Bach
Hi All! I have been working hard to get filtering into the next release of TableSorter. So i have put up a rough demo of how it will work. The demo is located here: http://motherrussia.polyester.se/pub/jquery/demos/filter/filter-demo.html In the full release filtering on dates will work and

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread dizzledorf
This is exactly what was in the code section of http://jquery.com/docs/Plugins/editInPlace/. I simply copied it into a file called editinplace.js. Is there a .js file that can be downloaded directly? wycats wrote: What's up with the [EMAIL PROTECTED] stuff in the value section of the

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread Yehuda Katz
There was a glitch along the way. I've updated it with what should be a correct version.-- YehudaOn 9/25/06, dizzledorf [EMAIL PROTECTED] wrote:This is exactly what was in the code section of http://jquery.com/docs/Plugins/editInPlace/.I simply copied it into a file called editinplace.js.Is there

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread dizzledorf
Yehuda, That was it. Replaced the mangled ([EMAIL PROTECTED]) version with the one you just posted and it's running smoothly. Nice work! --DIZZLE wycats wrote: There was a glitch along the way. I've updated it with what should be a correct version. -- Yehuda On 9/25/06,

Re: [jQuery] TableSorter Preview: Filtering.

2006-09-25 Thread Jörn Zaefferer
Christian Bach schrieb: Hi All! I have been working hard to get filtering into the next release of TableSorter. So i have put up a rough demo of how it will work. The demo is located here: http://motherrussia.polyester.se/pub/jquery/demos/filter/filter-demo.html In the full release

Re: [jQuery] editInPlace Plugin

2006-09-25 Thread Yehuda Katz
Cool. The next step would be to get a working checkbox ;)-- YehudaOn 9/25/06, dizzledorf [EMAIL PROTECTED] wrote:Yehuda,That was it.Replaced the mangled ([EMAIL PROTECTED]) version with the one you just posted and it's running smoothly.Nice work!--DIZZLEwycats wrote: There was a glitch along the

[jQuery] Spread jQuery Request

2006-09-25 Thread Yehuda Katz
Hey guys,I'm going to be putting together a video to be posted on YouTube as an advertisement for jQuery.I'd love to get MP3 or text testimonials from you guys explaining why the switch to jQuery changed the way you do _javascript_. MP3s are ideal, but I can work with text too. Send your comments

[jQuery] AJAX module - further suggestions?

2006-09-25 Thread Jörn Zaefferer
Hi folks, after the discussion about the global ajax handlers and the question, if the form plugin should be merged into the core, I'd like to know wheather anyone has any other issues, problems or ideas for the AJAX module that can be addressed. Now is the time! I'm currently adding lots of

Re: [jQuery] Digg push

2006-09-25 Thread Dave Benjamin
On Mon, 25 Sep 2006, Yehuda Katz wrote: Good fyi. I'd quibble about the front-page of the programming section. I'm sure there are *some* people that check sections of interest to them. May not be a whole lot of people, but there are certainly *some.* Am I missing something? I get the

Re: [jQuery] Digg push

2006-09-25 Thread Justin Carter
On 9/26/06, Yehuda Katz [EMAIL PROTECTED] wrote: You guys have put Visual jQuery on the map. If you can help with one final push, I'd be eternally grateful. I'd suggest getting a Visual jQeury Magazine article on Ajaxian.com. I think it has a reasonable amount of readers. You can use the

Re: [jQuery] Digg push

2006-09-25 Thread Yehuda Katz
I did so a few days ago. They didn't pick up the story.On 9/25/06, Justin Carter [EMAIL PROTECTED] wrote:On 9/26/06, Yehuda Katz [EMAIL PROTECTED] wrote: You guys have put Visual jQuery on the map. If you can help with one final push, I'd be eternally grateful.I'd suggest getting a Visual jQeury

Re: [jQuery] Digg push

2006-09-25 Thread Matt Stith
I know ajaxian has a lot of readers, when i figured out the mooglets API, ajaxian linked to it, and i just about tripled my hits for the days that that article was on the front page.On 9/25/06, Justin Carter [EMAIL PROTECTED] wrote: On 9/26/06, Yehuda Katz [EMAIL PROTECTED] wrote: You guys have

[jQuery] how to get the display value of an element?

2006-09-25 Thread Geoff Knutzen
I am writing a routine that can accept any element. I need to determine whether the element is displayed inline, as a box or some other display type. Is there a way to determine this if it has not already been set by a style? An unstyled A tag should return a display type of inline,

[jQuery] Bug in Droppables and Code Revert

2006-09-25 Thread Brendan O'Brien
There is a bug in Droppables right now (I have the latest code, and the bug is also present on the Droppables demo page on interface.eyecon.ro), where the tolerance : pointer isn't working. I debugged a little and jQuery.iDrop.pointer is using the value of jQuery.iDrag.dragged.dragCfg.pointer.x

Re: [jQuery] how to get the display value of an element?

2006-09-25 Thread Will Jessup
www.visualjquery.com go to .css Will I am writing a routine that can accept any element. I need to determine whether the element is displayed inline, as a box or some other display type. Is there a way to determine this if it has not already been set by a style? An unstyled A tag

Re: [jQuery] Ajaxian Framework Results

2006-09-25 Thread Clodelio Delfino
same here, seldom did i use javascript... until jquery came, and the jquery plugins, the best!!! c,) Chris Mcleod wrote: That's certainly true of me! I didn't use JS at all until I came across jQuery. Now I'm using it _all_ the time. -Original Message- The motto will be I never

Re: [jQuery] how to get the display value of an element?

2006-09-25 Thread Geoff Knutzen
Ah, got it. .css returns the currentStyle Thanks -Geoff -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Will Jessup Sent: Monday, September 25, 2006 4:03 PM To: jQuery Discussion. Subject: Re: [jQuery] how to get the display value of an element?

[jQuery] Someone want to subscribe this maillist

2006-09-25 Thread limodou
I don't know who is the administrator of this maillist, and I received a man his email is [EMAIL PROTECTED], and he talk with me some jQuery questions, and he said he tried to subscribe this maillist, but failed. So he asked me talk to the administrator that adding him into this maillist, very

[jQuery] Multiple Ready Blocks

2006-09-25 Thread Glen Lipka
Is it permissable to have more than one $(document).ready(function() {}) per page? If it is not, would this be a good workaround? $(document).ready(function() {runGlobalJQueryFunctions();runLocalJQueryFunctions(); return false; }); The reason is that one group is managing a global header and

Re: [jQuery] [PATCH] IE opacity issues

2006-09-25 Thread limodou
On 9/26/06, Kelvin Luck [EMAIL PROTECTED] wrote: Hi, Has anyone tested this patch? I've just run into some problems with opacity in IE and I'm hoping this can fix it... Is there any reason for it not to find its way into the code? Cheers, I don't test it, but I have the same problem, and

Re: [jQuery] Multiple Ready Blocks

2006-09-25 Thread Chris Domigan
On 26/09/06, Glen Lipka [EMAIL PROTECTED] wrote: Is it permissable to have more than one $(document).ready(function() {}) per page?Absolutely. The function is just appended to the handler I believe.Chris ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Multiple Ready Blocks

2006-09-25 Thread Michael Geary
Is it permissable to have more than one $(document).ready(function() {}) per page? Yes, as many as you want. They will be called in the same order that the $(document).ready() calls were made. Note that there is a handy shortcut for $(document).ready(): $( function(){} ); -Mike

Re: [jQuery] Someone want to subscribe this maillist

2006-09-25 Thread limodou
On 9/26/06, Realazy XA Chen [EMAIL PROTECTED] wrote: On 9/26/06, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: jQuery questions, and he said he tried to subscribe this maillist, but failed. check this out: http://jquery.com/discuss/ He said he tried many times, but he cann't receive any back email.

Re: [jQuery] Someone want to subscribe this maillist

2006-09-25 Thread Realazy XA Chen
On 9/26/06, limodou [EMAIL PROTECTED] wrote: He said he tried many times, but he cann't receive any back email.ooops...try another email or ask John Resig ( but jQuery magazine say he will not reply the mailing list anymore -_- ) -- Laziness, DRY always.

Re: [jQuery] [PATCH] IE opacity issues

2006-09-25 Thread Brandon Aaron
I've been using it very successfully thus far and have been trying to find some time to write some tests for it. However, my only concern is that it will conflict with other filters in IE. I plan on addressing that once I find the time to write the tests. We are actually sending the project I

Re: [jQuery] Multiple Ready Blocks

2006-09-25 Thread Brandon Aaron
I haven't seen this behavior and I've been using jQuery very heavily. Perhaps it was an older version as Matt sugested. I'm using latest SVN and haven't had but just a couple of issues. Brandon On 9/25/06, Dave Benjamin [EMAIL PROTECTED] wrote: On Mon, 25 Sep 2006, Michael Geary wrote: Is it

Re: [jQuery] Someone want to subscribe this maillist

2006-09-25 Thread Realazy XA Chen
On 9/26/06, John Resig [EMAIL PROTECTED] wrote: I just said that, due to the community being soactive, I rarely have to reply to the mailing list. so sorry for my misunderstanding. :(-- Laziness, DRY always. ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Ready blocks not always firing

2006-09-25 Thread Brandon Aaron
The current revision in SVN is 346. A quick glance over the check-ins didn't show a particular reversion # that the issue you are having was fixed in. I have been using the latest SVN revision since around 289 and haven't seen this issue. Brandon On 9/25/06, Dave Benjamin [EMAIL PROTECTED]

Re: [jQuery] Ready blocks not always firing

2006-09-25 Thread Dave Benjamin
On Mon, 25 Sep 2006, Brandon Aaron wrote: The current revision in SVN is 346. A quick glance over the check-ins didn't show a particular reversion # that the issue you are having was fixed in. I have been using the latest SVN revision since around 289 and haven't seen this issue. I can't

Re: [jQuery] Form plugin - move to core?

2006-09-25 Thread ashutosh bijoor
hey mike, thanks for taking the trouble to answer!regarding backward compatibility - a necessary evil - along ur line of thought, maybe we can have small backward-compatibility layers that can be peeled off if and when the user gets a chance to upgrade his/her code -ashutoshOn 9/25/06, Mike

Re: [jQuery] Form plugin - move to core?

2006-09-25 Thread Rey Bango
Agreed and that would be really beneficial. Rey... thought, maybe we can have small backward-compatibility layers that can be peeled off if and when the user gets a chance to upgrade his/her code -ashutosh ___ jQuery mailing list

[jQuery] Get attribute from $()

2006-09-25 Thread Donny Kurnia
I've got this result while debugging with firebug: $(type,line) [type value=select] $(type,line).attr(value) --result nothing $(type,line).get(0) type value=select $(type,line).get(0).attr(value) --result nothing How do I got the value attribute from $(type,line) without assign it to another

Re: [jQuery] Ready blocks not always firing

2006-09-25 Thread Dave Benjamin
Well, I removed some code that was creating the Flash-based MP3 player and the erratic behavior on IE went away. The other site that I had this problem with had Flash as well, and in both sites I was using the SWFObject JavaScript library according to the instructions, by creating a DIV to

[jQuery] Magazine Typo corrections

2006-09-25 Thread Yehuda Katz
With the exception of the semantic issues, I have corrected the errors that have been reported. The updated issue (which also has several other small improvements) can be downloaded at http://www.visualjquery.com/magazine.html-- Yehuda KatzWeb Developer | Wycats Designs(ph)718.877.1325

Re: [jQuery] Get attribute form $()

2006-09-25 Thread Matt Grimm
Or to stay with jQuery objects: $('type', line).eq(0).val() From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Blair McKenzieSent: Monday, September 25, 2006 7:53 PMTo: jQuery Discussion.Subject: Re: [jQuery] Get attribute form $() I don't know about the other stuff, but

Re: [jQuery] Get attribute form $()

2006-09-25 Thread Klaus Hartl
Donny Kurnia schrieb: I've got this result while debugging with firebug: $(type,line) [type value=select] $(type,line).attr(value) --result nothing $(type,line).get(0) type value=select $(type,line).get(0).attr(value) --result nothing How do I got the value attribute from

Re: [jQuery] how to get the display value of an element?

2006-09-25 Thread Klaus Hartl
Geoff Knutzen schrieb: I am writing a routine that can accept any element. I need to determine whether the element is displayed inline, as a box or some other display type. Is there a way to determine this if it has not already been set by a style? An unstyled A tag should return a