Re: [jQuery] Media plugins

2006-11-09 Thread Kurt Mackey
That's correct, people who post things like Youtube videos on their blogs generally annoy me. Most readers won't (and probably shouldn't) do anything with flash or other rich content. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent:

Re: [jQuery] selectbox plugin - take 2

2006-11-08 Thread Kurt Mackey
That's pretty sweet. I'd love to have a nice packaged plugin with enhanced form controls. I assume this supports all the standard select events? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Christian Bach Sent: Wednesday, November 08, 2006 3:52 PM

Re: [jQuery] Media plugins

2006-11-08 Thread Kurt Mackey
That's really nice, especially for content that's going to be delivered in RSS feeds (and elsewhere). -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Wednesday, November 08, 2006 6:10 PM To: jQuery Discussion. Subject: [jQuery] Media

Re: [jQuery] Plugin method question

2006-10-30 Thread Kurt Mackey
Oh yes, and if you really really want to, you could create a custom DTD with your special attribute in it. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul McLanahan Sent: Monday, October 30, 2006 9:38 PM To: jQuery Discussion. Subject: [jQuery] Plugin method

Re: [jQuery] Plugin method question

2006-10-30 Thread Kurt Mackey
As a general rule, Id rather see a totally non-valid attribute than a co-opted title tag. Ive also seen people use specific classes that are parsed into settings. So youd end up with something like dl class=accordion_true showspeed_slow hidespeed_fast/dl Granted, youd have to

Re: [jQuery] Plugin method question

2006-10-30 Thread Kurt Mackey
That's strange, unless one of your custom attributes happens to be runat='server'. I wouldn't do a DTD either, but it's always an option if you absolutely must have a valid page for some reason. I don't think the W3's validator will even use a custom DTD. -Original Message- From: [EMAIL

[jQuery] Releases in svn?

2006-10-28 Thread Kurt Mackey
I like all these releases. Would it be possible to get the released builds in SVN as well, and tagged releases of the old stuff? Id love to be able to include the current version of jquery by adding an svn:externals that points at svn://jquery.com/releases/current, and it would be nice to

Re: [jQuery] Releases in svn?

2006-10-28 Thread Kurt Mackey
of it) I'm kind of leaning away from including the zip files straight in SVN, since they're not actually part of SVN, and would just include more overhead. Let me know if this works for you. --John On 10/28/06, Kurt Mackey [EMAIL PROTECTED] wrote: That's close, but I was hoping for builds themselves

Re: [jQuery] Non-destructive jQuery

2006-10-26 Thread Kurt Mackey
I use multiple destructive functions all the time: $('#share').children().not('h2').hide().end().end().slideUp('normal'); They're very useful when you need to set up specific elements within a container before doing something with the container itself. -Original Message- From: [EMAIL

Re: [jQuery] Non-destructive jQuery

2006-10-26 Thread Kurt Mackey
Hmm... ok, I guess I don't understand what the difference between the destructive and non-destructive one is then. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Thursday, October 26, 2006 10:30 AM To: jQuery Discussion. Subject:

Re: [jQuery] Non-destructive jQuery

2006-10-26 Thread Kurt Mackey
Ah, that makes sense. Given that I understand it now, that seems to be more how I'd expect things to work. Now that I think about it, I was bitten by that destructiveness thing at one time before. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave

Re: [jQuery] Has anybody done this?

2006-10-26 Thread Kurt Mackey
If you scroll on down to a comment by Olsow, youll find what I think is a better way to do DOM creation: http://mg.to/2006/02/27/easy-dom-creation-for-jquery-and-prototype#comment-176 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Linan Wang Sent: Thursday, October

Re: [jQuery] Visual jQuery Announcement

2006-10-26 Thread Kurt Mackey
Mucho thanks for the return values. From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yehuda Katz Sent: Thursday, October 26, 2006 6:23 PM To: jQuery Discussion. Subject: [jQuery] Visual jQuery Announcement I just updated Visual jQuery so it uses docs that include

Re: [jQuery] Visual jQuery Announcement

2006-10-26 Thread Kurt Mackey
I notice that Dimension.js isnt in there. I know its sort of in limbo between part of the core and an official plugin, but Id love to see it. ;) From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yehuda Katz Sent: Thursday, October 26, 2006 6:23 PM To: jQuery Discussion.

[jQuery] Dimensions.js? I'm confused

2006-10-25 Thread Kurt Mackey
So, whats the right way to try and use the functionality of dimensions.js? I notice its in the source as part of jquery, but it doesnt seem to get built into the distribution. Does it need to be included like a plugin? If so, where do I get the packed version. J

[jQuery] .appendTemplated plugin (my first!)

2006-10-24 Thread Kurt Mackey
In my perfect world, all data I get from a server will be JSON, and I can format it how I please. Doing that with jQuery is somewhat verbose at the moment, leaving me with awesome code like this: var headlines = $(Journals.HeadlinesContainer); for(i in json){ var li =

Re: [jQuery] Why do i need a delay in $(document).ready when using the center plugin ?

2006-10-23 Thread Kurt Mackey
Without really knowing what .center() does, I'd assume it's because when $(document).ready() fires, the image isn't loaded. I suspect the 1 second delay gives it enough time to do so. Does the image have a set width and height? If you specify those, it might work. -Original Message-

Re: [jQuery] Handling unsupported browsers

2006-10-18 Thread Kurt Mackey
The jQuery philosophy has made it much easier to deal with downlevel browsers for me. When I need compatibility, I build the page as I would if I weren't using javascript at all. Links all have hrefs to relevant places, elements that should be updated dynamically are filled with data on the

[jQuery] How to safely get the clickTarget of an event?

2006-10-18 Thread Kurt Mackey
Is there a jQuery way of getting an events click target? I tend to use those elements quite a bit, but getting them is a pain. J ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] How to safely get the clickTarget of an event?

2006-10-18 Thread Kurt Mackey
the element, use 'this' inside the function to refer to the clicked element. If you mean the mouse position, I believe there are some functions available in the dimensions plugin. Blair On 10/19/06, Kurt Mackey [EMAIL PROTECTED] wrote: Is there a jQuery way of getting an event's click target

[jQuery] Documentation of return objects?

2006-10-11 Thread Kurt Mackey
Are the return types for various methods documented anywhere? I can guess on most of them, but I'd like a handy cheat sheet showing that .html('blah') returns the original element. Things like .after() aren't at all obvious, however, and I could see a reasonable case for it to either return the

Re: [jQuery] Documentation of return objects?

2006-10-11 Thread Kurt Mackey
Of John Resig Sent: Wednesday, October 11, 2006 12:11 PM To: jQuery Discussion. Subject: Re: [jQuery] Documentation of return objects? Yep: http://jquery.com/api/ On 10/11/06, Kurt Mackey [EMAIL PROTECTED] wrote: Are the return types for various methods documented anywhere? I can guess on most

Re: [jQuery] Documentation of return objects?

2006-10-11 Thread Kurt Mackey
Yep, that's correct, even if I can't write very clearly. ;) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Blair Mitchelmore Sent: Wednesday, October 11, 2006 1:07 PM To: jQuery Discussion. Subject: Re: [jQuery] Documentation of return objects? I think

Re: [jQuery] New Plugin: jMP3

2006-10-10 Thread Kurt Mackey
Try replacing your eolas thing at the bottom of your loop with this: If(jQuery.browser.msie){ $(this).html($(this).html()); } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sean O Sent: Tuesday, October 10, 2006 11:09 AM To: discuss@jquery.com

Re: [jQuery] New Plugin: jMP3

2006-10-10 Thread Kurt Mackey
Oh wait, no, that won't work. You'd need: if(jQuery.browser.msie){ this.outerHTML = this.outerHTML; } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kurt Mackey Sent: Tuesday, October 10, 2006 11:16 AM To: jQuery Discussion. Subject: Re

Re: [jQuery] New Plugin: jMP3

2006-10-10 Thread Kurt Mackey
Ok, rather than keep guessing, I actually tried things out until one worked. Put this in place of your current eolas thing: if(jQuery.browser.msie){ $(this).children('object').each(function(){ this.outerHTML =

Re: [jQuery] jQuery 1.0.2 RC2

2006-10-08 Thread Kurt Mackey
IE 6 passed all tests here. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Sunday, October 08, 2006 5:40 AM To: jQuery Discussion. Subject: [jQuery] jQuery 1.0.2 RC2 Hi folks, it's time for another release candiate, this time

Re: [jQuery] jQuery + Atlas (ASP.NET AJAX) or $ conflict

2006-10-03 Thread Kurt Mackey
You might look at the PrototypeAndJQuery page on the wiki: http://jquery.com/docs/PrototypeAndJQuery/ The first section probably isn't applicable, but the second portion looks like a workaround that might work with the Atlas client side stuff. -Original Message- From: [EMAIL PROTECTED]

Re: [jQuery] mouse gestures?

2006-09-30 Thread Kurt Mackey
I just saw this discussion here. http://episteme.arstechnica.com/eve/forums/a/tpc/f/6330927813/m/378000821831 Looks like the translated version of this should work: document. () { return false; } // IE document. () { return false; } // Others -Kurt From: [EMAIL PROTECTED]