[jQuery] [site using jQuery] www.iwidgets.com

2008-06-17 Thread PragueExpat
Javascript widget builder for deployment to social sites uses jQuery - check out the public beta Thanks jQuery team for such a great library!

[jQuery] Re: inherited private variables

2008-06-10 Thread PragueExpat
On Jun 10, 7:32 am, RobG <[EMAIL PROTECTED]> wrote: > On Jun 10, 5:05 am, PragueExpat <[EMAIL PROTECTED]> wrote: > > > I posted this in comp.lang.javascript also, but would like to hear > > from the jQuery group. > > Multi-posting is not liked: &

[jQuery] inherited private variables

2008-06-09 Thread PragueExpat
I posted this in comp.lang.javascript also, but would like to hear from the jQuery group. I (think) that I've come up with a pattern that I haven't seen in any publications so far and I would like some feedback. Basically, I was looking for a way to inherit private functions and I came up with th

[jQuery] Re: bug tracker error

2008-04-22 Thread PragueExpat
I found that if you remove all cookies from dev.jquery.com, you can reload the page. On Apr 22, 4:12 pm, Jeremy Stanton <[EMAIL PROTECTED]> wrote: > Same problem here. Please help, folks. > > On Apr 21, 11:33 am, PragueExpat <[EMAIL PROTECTED]> wrote: > > > I can

[jQuery] Re: bug tracker error

2008-04-21 Thread PragueExpat
I can only open the link one or two times. Refreshing the page again gives me the error. Am I the only one? (tested FF2 on linux and windows) On Apr 17, 4:39 pm, PragueExpat <[EMAIL PROTECTED]> wrote: > anyone getting this error when trying to open a bug report? > > http:/

[jQuery] bug tracker error

2008-04-17 Thread PragueExpat
anyone getting this error when trying to open a bug report? http://dev.jquery.com/report/19 Trac detected an internal error: IntegrityError: (1062, "Duplicate entry '690bd2f84578796-0-0' for key 1")

[jQuery] idle.slashdot.org uses jQuery

2008-01-30 Thread PragueExpat
Not much activity on the site yet (its new), but its nice to see that they appreciate and use a great javascript library

[jQuery] Aspect Oriented Extension for jQuery

2008-01-07 Thread PragueExpat
Surfing dzone.com this morning, I came across this plugin for jQ: http://code.google.com/p/jquery-aop/wiki/Reference. Being unfamiliar with aspect oriented programming, I did a quick wikipedia lookup and quickly realized that this could be a great way to keep code clean. My question is this: wh

[jQuery] Re: drag'n'drop, double added element

2008-01-06 Thread PragueExpat
I put a bug in for UI (months ago) that demonstrated that the drop function was running twice (the bug # was around 1542 or so - http://dev.jquery.com/report doesn't show any bugs for me, although I've entered several plus it gives me a MySQL error when I try to do a custom search) Don't know if

[jQuery] "too much recursion" in newest droppable - jQueryUI

2007-09-11 Thread PragueExpat
I've posted a problem that I'm having with droppables and jQuery here: http://groups.google.com/group/jquery-ui/browse_thread/thread/f63eec69a7a0afe8 It is still a problem in 1.2 - There is an example html page in the discussion. Using firebug, you will see a recursion timeout after you drop a

[jQuery] Re: I thought I understood threads...

2007-07-17 Thread PragueExpat
come around to actually rendering the changes visually on the screen. While it seems that in Mozilla and Internet Explorer the changes are postponed until the current event dispatch has completed, these changes seem to be rendered immediately in Opera. - PragueExpat wrote: >

[jQuery] Re: I thought I understood threads...Works in Opera

2007-07-17 Thread PragueExpat
' gif to appear at the beginning of a long function call, but found that it was never appearing. I guess I need to display the gif in a function before the long function. PragueExpat wrote: > > Why does the following function wait until after the while loop is > finished to up

[jQuery] Re: I thought I understood threads...(cut/paste example)

2007-07-17 Thread PragueExpat
----- END EXAMPLE - PragueExpat wrote: > > Why does the following function wait until after the while loop is > finished to update the #timer css? It happens in IE and Firefox - I'm > (still) using jQ 1.1.2. > > functio

[jQuery] I thought I understood threads...

2007-07-17 Thread PragueExpat
Why does the following function wait until after the while loop is finished to update the #timer css? It happens in IE and Firefox - I'm (still) using jQ 1.1.2. function wait(time){ $("#timer").css("display","block"); time = time * 1000; var sleeping = true; var now = new Date(); var

[jQuery] Re: set attr in IE

2007-05-13 Thread PragueExpat
OK, Thanks. Brandon Aaron wrote: > > > I went ahead and created a new ticket for this: > http://dev.jquery.com/ticket/1182 > > -- > Brandon Aaron > > On 5/13/07, PragueExpat <[EMAIL PROTECTED]> wrote: >> >> >> $(function(){ >>

[jQuery] set attr in IE

2007-05-13 Thread PragueExpat
$(function(){ $("#test").attr("maxlength",10); }); Doesn't work on a text input field in IE. If I try: $(function(){ alert($("#test").attr("maxlength")); $("#test").attr("maxlength",10); alert($("#test").attr("maxlength")); }); In IE my alerts are: "2147483647" "2147483647

[jQuery] Order in which styles are applied

2007-04-27 Thread PragueExpat
I am wondering when external css styles are applied to the DOM elements. My external style sheet has a display:none for element A. With JQ on document.ready, I call the show() method on the element. (this is so people w/out javascript enabled will not see the element) Is there any chance that

[jQuery] Re: dimensions offset() and centered BODY tag

2007-04-10 Thread PragueExpat
tag and getting its offset can be a >> pain. Especially if you use position instead of just margin. I would >> suggest using a div to center your content. >> >> -- >> Brandon Aaron >> >> On 4/8/07, PragueExpat <[EMAIL PROTECTED]> wrote: >> >&g

[jQuery] dimensions offset() and centered BODY tag

2007-04-08 Thread PragueExpat
The body of my page is centered. It is 800px in width. I have a div that I need to be absolutely positioned over the body, so I am trying to get the left position of the (centered) body tag using the dimensions.js offset method. In IE I get the correct left position, but in FF I get 0. When I a