[jquery-dev] Should .trigger() use .fireEvent in IE?

2009-12-30 Thread Richard D. Worth
I just tracked down an issue that was causing the jQuery UI Datepicker to be incompatible with ASP.Net validator controls. Here's the ticket: http://dev.jqueryui.com/ticket/4071 and a visual test page: http://jquery-ui.googlecode.com/svn/trunk/tests/visual/datepicker/datepicker_ticket_4071.html

[jquery-dev] Proposed fix for #5706 - .attr() fails with TypeError when used on foreign elements, such as SVG

2009-12-23 Thread Richard D. Worth
Please review. http://dev.jquery.com/ticket/5706 Ticket has full description as well as two patches on github, one for jQuery, one for Sizzle. Thanks. - Richard -- You received this message because you are subscribed to the Google Groups "jQuery Development" group. To post to this group, send

Re: [jquery-dev] 'hover' pseudo element - access thru jQuery?

2009-11-04 Thread Richard D. Worth
Add a no-js class to the body in the html and then, using JavaScript, remove it and add a js class. Use these classes to scope any css rules you want for only the no-js or only the js scenarios. See this article for a similar technique: http://www.learningjquery.com/2008/10/1-way-to-avoid-the-flas

[jquery-dev] Re: Update to http://docs.jquery.com/Downloading_jQuery

2009-10-20 Thread Richard D. Worth
Thanks. Fixed. - Richard On Sat, Oct 17, 2009 at 12:30 PM, Sylvain wrote: > > The page is locked for editing, I found a few outdated instructions: > > "First, go into the main jQuery directory (the root directory will > contain six directories: jquery, plugins, qunit, themes, tools and ui; > go

[jquery-dev] Re: clone() method not working with UI components

2009-10-20 Thread Richard D. Worth
This is a known issue: http://dev.jqueryui.com/ticket/3803 http://groups.google.com/group/jquery-ui/browse_thread/thread/a1cbbd784aa0dae2 If you want to discuss any further, please post to the jquery-ui-dev list: http://groups.google.com/group/jquery-ui-dev Thanks. - Richard On Mon, Oct 19,

[jquery-dev] Re: $.data(elem) API changed in 1.4pre ?

2009-10-16 Thread Richard D. Worth
On Wed, Oct 14, 2009 at 1:18 PM, Mark Gibson wrote: > > Thanks John, that makes complete sense, I too am not sure why jQuery > UI doesn't use a counter either. > Thanks for the patch. Fixed. http://groups.google.com/group/jquery-ui-dev/browse_thread/thread/7e1fe2a53bf0c7d3 - Richard --~--~---

[jquery-dev] Re: getting multiple values

2009-10-05 Thread Richard D. Worth
The documentation suggests that checkboxes should work as well as select boxes, so this may be a bug: http://docs.jquery.com/Attributes/val - Richard On Mon, Oct 5, 2009 at 4:51 AM, Justinas Urbanavicius wrote: > thanks. although it's weird that .val() || [] works when fetching multiple > values

[jquery-dev] Re: What would you call jQuery's design patterns / principals?

2009-08-28 Thread Richard D. Worth
Here's a few that come to my mind: - Find things. Do stuff.- Write less. Do more. - KISS - DRY - PE (Progressive Enhancement) - Unobtrusive JavaScript - Richard On Thu, Aug 27, 2009 at 4:29 PM, Buddy wrote: > > What would you call jQuery's design pattern / principals? > > - Closures > - OO > -

[jquery-dev] Re: jquery ajax/load event on div drop

2009-08-26 Thread Richard D. Worth
On Tue, Aug 25, 2009 at 12:21 PM, mike.helgeson wrote: > > This list is for discussions related to the development of the jquery > core library. > > Your question is related to drag/drop special events and should be > directed here: > > http://groups.google.com/group/threedubmedia/topics Did you

[jquery-dev] Re: Multiple draggable into one div and cancel

2009-08-20 Thread Richard D. Worth
Actually, since your question is about jQuery UI: http://groups.google.com/group/jquery-ui - Richard On Thu, Aug 20, 2009 at 8:32 PM, lrbabe wrote: > > Hello, > > This is the group for questions related to the development of the > library itself rather

[jquery-dev] Re: Proposal: New parameter to traversal callbacks

2009-07-21 Thread Richard D. Worth
The "this" is not a jQuery object, but a DOMElement. function(i, $this) { // $this == $(this) // $this[0] == this } - Richard On Tue, Jul 21, 2009 at 7:55 AM, getify wrote: > > If those functions (find, trigger, each, etc) all bind the "this" to > the object, what's the need for additional

[jquery-dev] Re: JqueryUI doesn't generate custom theme?

2009-06-05 Thread Richard D. Worth
See http://groups.google.com/group/jquery-ui/browse_thread/thread/e8de54f7d97787ac - Richard On Tue, Jun 2, 2009 at 2:56 PM, Gera88 wrote: > > I'm trying to generate custom theme 1.7.1 (1.3+) but generated archive > id broken. 1.6 works well. > I use FF3, IE8, download manager. > > > http://jq

[jquery-dev] Re: Animate with FPS control

2009-06-02 Thread Richard D. Worth
This was discussed here: http://groups.google.com/group/jquery-dev/browse_thread/thread/c85d9cb6c8302510 - Richard On Mon, Jun 1, 2009 at 5:06 PM, dnuske wrote: > > Hello everybody or every robot around, > I was using Animate for a while and I foud one thing that can be > improved, that is FPS

[jquery-dev] Re: UI resizable bug?

2009-05-27 Thread Richard D. Worth
On Tue, May 26, 2009 at 9:10 AM, Omen wrote: > > Greetings. > > I'am writing image area selection feature with jQuery 1.3.2 and jQuery > UI 1.7.1 and encountered the next problem. > > I used Eyecon Interface library great example and tried to port it to > the jQuery UI, but as you can see there a

[jquery-dev] Re: [selectors] :visible and :hidden seems to be buggy

2009-05-23 Thread Richard D. Worth
On Sat, May 23, 2009 at 9:07 PM, Lideln wrote: > Also, I posted several bug reports about the ui-resizable plugin, but > I did it in the "jquery discussion" group. Is it better if it's in the > development group ? Actually, there's a dedicated jQuery UI group: http://groups.google.com/group/jq

[jquery-dev] Re: Please help me to create a page scroll

2009-04-25 Thread Richard D. Worth
This is a great question for the main jQuery list: http://groups.google.com/group/jquery-en - Richard On Sat, Apr 25, 2009 at 2:50 AM, N i B o H s wrote: > I have to create a page scroller like in latest version of yahoo mail list > scroll. Can I create that kind of scolling effect by using js.

[jquery-dev] Re: Fadeout bug in 1.3.2

2009-04-16 Thread Richard D. Worth
Take a look and see if this is a known issue: http://dev.jquery.com/search?ticket=on&q=fadeout If so, you could add your test case to the ticket, otherwise open a new one. Thanks. - Richard On Wed, Apr 15, 2009 at 8:06 AM, weepy wrote: > > Hi > > I've got a problem where fadeOut does not work

[jquery-dev] Re: selector on elements like id="name[2]"

2009-04-16 Thread Richard D. Worth
On Wed, Apr 15, 2009 at 12:23 PM, Daniel Friesen wrote: > > Fact is that jQuery does support using characters like :[] by escaping > them with a \ and that should be noted when someone does not know. It's noted here: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_t

[jquery-dev] Re: height() is wrong in Firefox for tables with captions

2009-03-27 Thread Richard D. Worth
On Thu, Mar 26, 2009 at 9:17 PM, Danny wrote: > > Sample page: > http://youngisrael-stl.org/wordpress/blogfiles/tableheight.html > > Firefox does not include the caption in offsetHeight for tables (works > correctly in IE and Chrome). This is not a jQuery bug, but it might be > worth working arou

[jquery-dev] Re: height() is wrong in Firefox for tables with captions

2009-03-27 Thread Richard D. Worth
On Thu, Mar 26, 2009 at 9:17 PM, Danny wrote: > > Sample page: > http://youngisrael-stl.org/wordpress/blogfiles/tableheight.html > > Firefox does not include the caption in offsetHeight for tables (works > correctly in IE and Chrome). This is not a jQuery bug, but it might be > worth working arou

[jquery-dev] Re: "feature request": retrieving :hover css properties

2009-03-25 Thread Richard D. Worth
You may want to look at this plugin by Ariel Flesler for accessing css rules: http://plugins.jquery.com/project/Rule http://flesler.blogspot.com/2007/11/jqueryrule.html - Richard On Wed, Mar 25, 2009 at 2:42 AM, Alexandre Plennevaux wrote: > hello! > > i first posted this in the mailing list

[jquery-dev] Re: Detect using jQuery

2009-03-14 Thread Richard D. Worth
Your question is better suited to the main jQuery list: http://groups.google.com/group/jquery-en The list you've posted to is for development of the jQuery library itself. - Richard On Thu, Mar 12, 2009 at 9:20 PM, Diaz, Chico wrote: > > I am sure this is a simple question, however, my resear

[jquery-dev] Re: A Modest Proposal: jQuery Enterprise

2009-02-27 Thread Richard D. Worth
I'll admit that I wasn't aware this page existed. As for jQuery UI documentation, it's had a bit of an overhaul over the last couple weeks. It's now similar, but significantly different (read: incompatible) with the jQuery docs standard. This is necessary for a number of reasons that I won't go int

[jquery-dev] Re: A Modest Proposal: jQuery Enterprise

2009-02-24 Thread Richard D. Worth
On Tue, Feb 24, 2009 at 5:29 PM, Matt Kruse wrote: > > On Feb 24, 2:15 pm, Mike Hostetler wrote: > > If the > > jQuery team adopted a few choice plugins, like a debugging plugin, a data > > layer plugin, and by putting the widget code into the core, allowed these > > plugins to be extended, I th

[jquery-dev] Re: Problem destroying draggable

2009-02-24 Thread Richard D. Worth
Your question is probably better suited to one of these lists: http://groups.google.com/group/jquery-ui http://groups.google.com/group/jquery-ui-dev Thanks. - Richard On Tue, Feb 24, 2009 at 5:50 AM, bobbykjack wrote: > > Using jQuery 1.3.2, I see the following error when trying to > call .d

Re: [jquery-ui-dev] Re: [jquery-dev] createjQueryXMLDocs.py and UI

2009-02-20 Thread Richard D. Worth
On Fri, Feb 20, 2009 at 9:08 AM, Mika Tuupola wrote: > > On Feb 19, 2009, at 4:07 PM, Paul Bakaus wrote: > > > Yeah, Richard had to change our templates to be able to better > > include it directly > > into our site. > > > > I'm sure he'll respond with a mail to this thread as well, he can > > exp

[jquery-dev] Re: In UI/Dialog options "shadow: false" show error

2009-02-11 Thread Richard D. Worth
I'm going to assume you mean 1.6rc6 as rc2 didn't have a shadow option. This bug has been fixed in trunk by removing the shadow option completely (for this release). In the future, discussion of jQuery UI bugs should be on the jQuery UI Dev list: http://groups.google.com/group/jquery-ui-dev Here'

[jquery-dev] Given two jQuery objects a and b, find whether b is within a

2009-01-22 Thread Richard D. Worth
See http://groups.google.com/group/jquery-en/browse_thread/thread/9efd1af2e2076eb9 Is this a bug? test("Given two jQuery objects a and b, find whether b is within a. Test 1: b not within a", function() { //b is not within a //expect 0 var a = jQuery(''); var b = jQuery(''); e

[jquery-dev] Re: new whitehouse.gov uses jQuery

2009-01-21 Thread Richard D. Worth
Actually, they're also using jQuery UI. They wouldn't be able to update to v1.3 until the next version of jQuery UI (1.6) comes out, as the latest stable release of UI (1.5.3) is not compatible with jQuery 1.3. See http://blog.jquery.com/2009/01/16/jquery-ui-16rc5-compatible-with-jquery-13/ for m

[jquery-dev] Re: Regression jQuery UI 1.6rc4 + jQuery 1.3 : triggerHandler problems

2009-01-15 Thread Richard D. Worth
jQuery UI 1.6rc4 is only compatible with jQuery 1.2.6. 1.6rc5 will be released today and be compatible with jQuery 1.3. - Richard On Thu, Jan 15, 2009 at 8:10 AM, lrbabe wrote: > > I'm not very certain about the origin of this problem, but it appears > that when using the last release candidate

[jquery-dev] Re: enhancement proposal for .animate()

2009-01-12 Thread Richard D. Worth
On Mon, Jan 12, 2009 at 7:19 AM, blinds wrote: > > Hi there, > > The last year I had to make a lot of animation with jquery and I ended > up including custom plugins and extensions for adding support to > animate from one class to another and to have a delay. All the plugins > in the jquery plugi

[jquery-dev] Re: Dialog box not honouring height when re-opened

2009-01-02 Thread Richard D. Worth
Please post to the jQuery UI list http://groups.google.com/group/jquery-ui Also, the flora theme has been deprecated. For 1.6rc4, I recommend using the default theme for testing (included in the development bundle) or grab/roll a theme at http://themeroller.com/ The rc4 release included a lot of

[jquery-dev] Re: Event delegation

2008-12-22 Thread Richard D. Worth
On Mon, Dec 22, 2008 at 6:48 PM, Elijah Insua wrote: > > This list? I must be blind. My appologies Here are some related threads: Someone has Safari 2 ? http://groups.google.com/group/jquery-dev/browse_thread/thread/6a4bf8a6344de44f Status of jQuery with Safari 2.0.4? http://groups.google.co

[jquery-dev] Re: Roadmap/Vision for jQuery

2008-12-10 Thread Richard D. Worth
As far as jQuery UI, expect a blog post this week. See here for a preview: http://groups.google.com/group/jquery-ui/msg/b6ad3b5853e87477 - Richard On Wed, Dec 10, 2008 at 11:29 AM, John Farrar <[EMAIL PROTECTED]> wrote: > > We are hearing where EXT JS, YUI and many other libearies are headed. >

[jquery-dev] Re: Overwriting plugin functions - bug or feature?

2008-12-04 Thread Richard D. Worth
On Thu, Dec 4, 2008 at 5:19 PM, aakoch <[EMAIL PROTECTED]> wrote: > > Is there a reason for this behavior? It seems like this is a jQuery > bug to me. This allows you to have two different versions (or really any number) of jQuery (for example 1.2.3 and 1.2.6) on your page at once. Each sits in

[jquery-dev] Re: Not getting element by its id or class.

2008-12-02 Thread Richard D. Worth
See also http://docs.jquery.com/Frequently_Asked_Questions#Why_doesn.27t_an_event_work_on_a_new_element_I.27ve_created.3F - Richard On Tue, Dec 2, 2008 at 9:57 AM, John Resig <[EMAIL PROTECTED]> wrote: > > A simple re-ordering should fix your issue: > > $.get("leftMenu.php", function(data){ >

[jquery-dev] Re: 'remove' event

2008-12-01 Thread Richard D. Worth
We do this in jQuery UI. See http://code.google.com/p/jquery-ui/source/browse/tags/1.5.2/ui/ui.core.js#66 - Richard On Mon, Dec 1, 2008 at 7:02 PM, Diogo Baeder <[EMAIL PROTECTED]> wrote: > Hi, guys, > > Just brainstorming: what to you think of adding a second argument to the > "remove()" metho

[jquery-dev] Re: setting val() of radio or checkbox to single value sets "value" instead of "checked"

2008-11-14 Thread Richard D. Worth
On Fri, Nov 14, 2008 at 12:51 PM, John Keith Hohm <[EMAIL PROTECTED]> wrote: > > But this does not work for radio or checkbox inputs. Given this HTML: > > First > Second > > code like this: > > $("[EMAIL PROTECTED]'ordinal']").val("2"); That selector matches both inputs (they both have a name at

[jquery-dev] Re: $(Trac).submit(check);

2008-11-14 Thread Richard D. Worth
What if we detect while they're typing any of those words and slide/fade-in an unobtrusive note right above the field highlighting that there is another ticket system for jQuery UI, with a link? And the link could transpose anything they've already entered to the form on the other system. - Richar

[jquery-dev] Re: draggable behaviour appearing broken under Safari

2008-11-13 Thread Richard D. Worth
Please post to the jQuery UI list in the future: http://groups.google.com/group/jquery-ui/ This sounds similar to http://ui.jquery.com/bugs/ticket/3249 Could you enter a new ticket (for draggable) here: http://ui.jquery.com/bugs/newticket (registration required) Thanks. - Richard On Thu, No

[jquery-dev] Re: Proposal on Attributes - replaceClass

2008-11-01 Thread Richard D. Worth
There are proposals here to overload toggleClass to do this: http://groups.google.com/group/jquery-dev/browse_thread/thread/2d9cd5432671449a http://dev.jquery.com/ticket/3219 http://dev.jquery.com/ticket/1681 - Richard On Sat, Nov 1, 2008 at 12:43 PM, Karl Swedberg <[EMAIL PROTECTED]>wrote: >

[jquery-dev] Re: edit url

2008-10-31 Thread Richard D. Worth
On Fri, Oct 31, 2008 at 1:10 PM, stilfx <[EMAIL PROTECTED]> wrote: > Because I new to this. > Please refer me to a better group for newb jquery questions. > http://groups.google.com/group/jquery-en - Richard --~--~-~--~~~---~--~~ You received this message because

[jquery-dev] Re: minified + gzipped = 15kb ??? front page must have a typo...

2008-10-15 Thread Richard D. Worth
gzipping is done by the server and un-done by the client. By the time you see the file (and its size), it is no longer gzipped, thus, larger. The point is to minimize size of transfer, and that is accomplished. If you take the same file and host it on a server, with the server configured to serve t

[jquery-dev] Re: Suggestions on improving the Plugins Repository

2008-10-14 Thread Richard D. Worth
On Tue, Oct 14, 2008 at 6:21 AM, Jörn Zaefferer < [EMAIL PROTECTED]> wrote: > Thats an interesting point. The repository isn't good at project > managmenet, and that never was the focus. Even if that wasn't the focus, maybe a lot of users would benefit from that. And maybe that's what they expec

[jquery-dev] Re: UI Tickets on Core's trac

2008-10-09 Thread Richard D. Worth
There's a lot that should be considered for switching to a new issue tracking system. Among them: - pre-built reports - custom reports - rss feeds - milestones - releases - roadmap - timeline I'm not saying this other tool doesn't have these, I'm just saying it's a big equation. - Richard On Th

[jquery-dev] Re: QUnit updates: Tests for QUnit; module setup/teardown

2008-09-21 Thread Richard D. Worth
This is great Jörn. I'm looking forward to making use of this. Thanks. - Richard On Sun, Sep 21, 2008 at 2:57 PM, Jörn Zaefferer < [EMAIL PROTECTED]> wrote: > Consider some code that you call before or after a test, and you have > to duplicate that in more than one test, maybe dozens. Instead of

[jquery-dev] Re: noob needs help..

2008-09-20 Thread Richard D. Worth
Please post questions like this to the main jQuery list: http://groups.google.com/group/jquery-en/ The jQuery Dev list is for development of jQuery itself, not development * with* jQuery. Thanks. - Richard On Fri, Sep 19, 2008 at 1:09 PM, Ming Cho <[EMAIL PROTECTED]> wrote: > > found this some

[jquery-dev] Re: Slow & Unresponsive: jQuery API and jQuery UI API, Demos

2008-09-17 Thread Richard D. Worth
See this msg/thread from earlier today on the main list: http://groups.google.com/group/jquery-en/msg/f2d3d8f33e4d1396 http://groups.google.com/group/jquery-en/browse_thread/thread/e5367cb4803ee3cb - Richard On Wed, Sep 17, 2008 at 9:39 PM, William Chang <[EMAIL PROTECTED]>wrote: > > I am expe

[jquery-dev] Re: javascript:void(0) not working

2008-09-17 Thread Richard D. Worth
On Wed, Sep 17, 2008 at 4:31 AM, SDLC <[EMAIL PROTECTED]> wrote: > > Hi, > I am a newbie in using jquery. In that case, you should ask on the main jQuery list: http://groups.google.com/group/jquery-en The jquery-dev list is for development of jQuery itself, not development * with* jQuery. Than

[jquery-dev] Re: JQuery Bind Popping My Bubble

2008-08-30 Thread Richard D. Worth
On Sat, Aug 30, 2008 at 4:42 PM, Dave Artz <[EMAIL PROTECTED]> wrote: > > For future reference did you mean this question belongs in the > "general discussion" list, rather than development? Yes, the jquery-dev list is for discussion of development of jQuery itself (not development with jQuery),