Re: [jQuery] jqModal r7 release!

2007-03-05 Thread Dmitry Rudakov
Brice, Could you help me? I regularly get an error in IE when my dialog (JQM) is showing: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus. In Firefox and Safari everything works without problems. And IE works as well... but this

[jQuery] How to find some consequent elements

2007-03-04 Thread Dmitry Rudakov
I need to find some consequent elements of one type from some point in DOM For example, I have: div id=start.../divinput id=id1/input id=id2/input id=idN/div/divinput id=out/ I need to find all inputs (from 1 to N) and not to find input with id=out if I use $(#start).siblings(input) I

Re: [jQuery] How to find some consequent elements

2007-03-04 Thread Dmitry Rudakov
Brice Burgess wrote: Dmitry, As an example, you can use var elements = $('input',$('#start')).not('#out'); I am sure others will have other suggestions. Bruce, I do not know ID or something else about these wrong inputs ... #out was just for example I should break this

Re: [jQuery] jqModal r7 release!

2007-03-03 Thread Dmitry Rudakov
Brice Burgess wrote: Are you compressing (JS compressor, not gzip output) the combined javascript output? I've played with similar techniques, and found compressors and the capsulated function don't play well. Bruce, to successfully use JS compressor you need to include some

Re: [jQuery] ANNOUNCE: Thickbox Reloaded alpha

2007-02-26 Thread Dmitry Rudakov
Klaus Hartl wrote: Sean, as I said, I haven't done any testing in IE at all so far. I'm truly amazed, that it looks great in IE 7 already. :-) Karl, JFYI inline examples also work in Safari.. ajax example does not. Dmitry -- View this message in context:

Re: [jQuery] Interface 1.2

2007-02-10 Thread Dmitry Rudakov
Klaus Hartl wrote: Especially stop() is what a lot of people waited for! Maybe... but I cannot evaluate it because it doesn't work in Safari. Or it works but it results to flickering in Safari anyway... But I quite agree with Klaus that Interface is very cool anyway. Thanks, Dmitry

[jQuery] jQuery is not defined error

2007-02-09 Thread Dmitry Rudakov
I've got this error when I tried to use Tooltip plugin by Joern Zaefferer. The calls stack in Firebug looks like this: jQuery is not defined (no name)(0)jquery-latest.js (line 115) each([div#tooltip.imgInfo], function(), undefined)jquery-latest.js (line 305) each(function(),

Re: [jQuery] Queueing animations

2007-02-03 Thread Dmitry Rudakov
Jörn Zaefferer wrote: jQuery already queues animations and lacks the ability to stop this queue. I'm not sure about your request: Do you want to prevent new animations when one is already running? Do you know if this any kind of stop queue animation will be implemented in JQuery in the

Re: [jQuery] strange behavior of Safari

2007-02-01 Thread Dmitry Rudakov
Karl Swedberg-2 wrote: Here is a rather lengthy explanation of the situation on the Surfin' Safari blog: http://webkit.org/blog/?p=66 If that doesn't help, you can search Google for: safari flash of unstyled content or: safari fouc Karl, thank you for direction of the

[jQuery] string as var in JQuery

2007-01-31 Thread Dmitry Rudakov
I'm just getting started with JQuery. When I tried to implement a small function I encountered the following: there is contruction in my HTML lispan id=navline_nextnext/span/li а) function StateHandler(is_next) { var span_id=[is_next ? #navline_next : #navline_prev];

Re: [jQuery] string as var in JQuery

2007-01-31 Thread Dmitry Rudakov
Linan Wang-2 wrote: The problem is here: When passing an array to jQuery(), it will regard it as a set of selected elements but not a css selector. Thank you, Linan. I see now. -- View this message in context: http://www.nabble.com/string-as-var-in-JQuery-tf3148441.html#a8728791 Sent