Re: [jQuery] Flat Calendar

2007-03-29 Thread Alexandre Plennevaux
I don't think it is possible with the dateSelector plugin, go for it!!! And while you're at it, if you could implement a multiple date selector, that 'd be awesome! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Scott Sauyet Sent: jeudi 29 mars 2007

Re: [jQuery] Problems with script replacement in Safari

2007-03-29 Thread Yansky
Thanks for the link. I don't think I quite understand their workaround though. I've put all the code in one javascript file, so there's no need for me to swap sources onload now. I'm not sure if having a couple of $.browser sniffing functions in one script is the correct way to do things, but

Re: [jQuery] Known memory leaks?

2007-03-29 Thread Markus Peter
On 28.03.2007, at 21:01, Brandon Aaron wrote: I think the most likely candidate for the leaks is going to surround the usage of AJAX and Events. Are you attaching events to html pulled in via AJAX? I ask because I believe if you proceed to replace that html without unbinding the events first,

Re: [jQuery] Close any other row before showing a new one

2007-03-29 Thread Rob Desbois
How about a class 'hideable' to style all of the rows hidden or not, and a class 'hidden' which does the actual hiding? Then, to hide all and show a specific one: $('.hideable').not('.hidden').addClass('hidden'); $('#specials-' + num + '-details').removeClass('hidden'); or something along

Re: [jQuery] Close any other row before showing a new one

2007-03-29 Thread Klaus Hartl
Rob Desbois schrieb: How about a class 'hideable' to style all of the rows hidden or not, and a class 'hidden' which does the actual hiding? I think hideable is still a purely presentational class name. Let's imagine this is going to be changed and the hideables are supposed to be shown all

Re: [jQuery] Close any other row before showing a new one

2007-03-29 Thread Rob Desbois
Klaus, You're absolutely right, that would be far better. Instead of 'hidden' for all items not shown, 'selected' would be a better class for the item currently shown. Rob. On 3/29/07, Klaus Hartl [EMAIL PROTECTED] wrote: Rob Desbois schrieb: How about a class 'hideable' to style all of the

Re: [jQuery] Any regular expression gurus here?

2007-03-29 Thread Christof Donat
Hi, The regular expression below works on just about everything except nested parentheses: Regular Expressions are used to define regular (Type 3 in Chomsky Hirarchy) grammars. You can not express nested parentheses in regular grammar, you need a context free (Type 2) but not regular

Re: [jQuery] Masked Input Plugin Beta 1

2007-03-29 Thread Stefan Kilp [sk-software]
Hi, thanks for the plugin. How do i handle dynamic input length. In germany there are phone number of different length and formating, like: 030-123 456 78 012345-987 654 32 and what about +49 089 33 44 55 6 would it be possible to have multiple masks or a regexp as a mask or is there any

Re: [jQuery] click(function) 'not working' for elements (not a) with tabindex and using keyboard

2007-03-29 Thread Dan Eastwell
That's a nice hack Karl, and after reading the W3C spec, I'm inclined to agree that browser interpretation of what a click is, is its own thing. I've found that IE and firefox assign click only to focused anchors when return is hit. I've got round it in a slightly different way by finding all the

Re: [jQuery] event bubbling

2007-03-29 Thread Juha Suni
Kush Murod wrote: if some of you heard of event bubbling then you'd have also experienced problem with .hover() to be more specific, once your content loads through ajax you won't have .hover anymore. with .click() it was straight forward where you bind event to parent. Difficulty I am

Re: [jQuery] click(function) 'not working' for elements (not a) with tabindex and using keyboard

2007-03-29 Thread Karl Rudd
In theory if you add a tabindex=0 to the elements you want keyboard focus for you should be able to tab to them and they will get key events. Karl Rudd On 3/23/07, Dan Eastwell [EMAIL PROTECTED] wrote: That's a nice hack Karl, and after reading the W3C spec, I'm inclined to agree that browser

Re: [jQuery] comet

2007-03-29 Thread Glen Hinkle
It seems that Opera can't handle a null character. In order to detect if the client has gone away, the server prints a null character to determine whether the connection is aborted: $r-print(\0); last if $r-connection-aborted; This isn't really a jquery problem, just an incompatibility

Re: [jQuery] Masked Input Plugin Beta 1

2007-03-29 Thread Pje
Very nice plugin. A feature i would like to see is an option to not put the mask in onkeypress. I mean, if the mask is 99/99/ and i press 0, the input will looks like 0_/__/ but what i spect is just 0. Then, when the user press 5, what i spect is 05. Now if i press 1, the script will

Re: [jQuery] comet

2007-03-29 Thread Edwin Martin
Matt Stith schreef: not as far as I have heard, but i would be interested in anything that has, or maybe a Comet plugin? anyone willing? There is. Comet Client for jQuery: http://empireenterprises.com/_comet.html Simply found in the jQuery plugin repository. Edwin Martin --

Re: [jQuery] Any regular expression gurus here?

2007-03-29 Thread Karl Swedberg
On Mar 29, 2007, at 4:55 AM, Christof Donat wrote: Regular Expressions are used to define regular (Type 3 in Chomsky Hirarchy) grammars. You can not express nested parentheses in regular grammar, you need a context free (Type 2) but not regular grammar. Christof, that is fascinating!

Re: [jQuery] ANNOUNCE: Tabs 2.7

2007-03-29 Thread Widi Harsojo
Wow!. awesome... Thanks, Klaus. Widi ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Masked Input Plugin Beta 1

2007-03-29 Thread Mark
wow wonderfull :) i`m gonna use this plugin in my scripts ^_^ 2007/3/29, Stefan Kilp [sk-software] [EMAIL PROTECTED]: Hi, thanks for the plugin. How do i handle dynamic input length. In germany there are phone number of different length and formating, like: 030-123 456 78 012345-987 654 32

Re: [jQuery] comet

2007-03-29 Thread Alexandre Plennevaux
I've always wondered: what is comet, a code editor? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Edwin Martin Sent: jeudi 29 mars 2007 12:21 To: jQuery Discussion. Subject: Re: [jQuery] comet Matt Stith schreef: not as far as I have heard, but i

Re: [jQuery] jEditable: how to remove behaviour

2007-03-29 Thread Mark
i think you have to edit the jEditable source for that... 2007/3/28, Abel Tamayo [EMAIL PROTECTED]: Hi all, I'm using jEditable for a webpage, but I would like to make it so that, once you've edited the text, the behaviour is removed and you can edit it no longer. Does anyone know how to do

[jQuery] [Fwd: event bubbling]

2007-03-29 Thread Kush Murod
can anyone help me on this Original Message Subject:[jQuery] event bubbling Date: Thu, 22 Mar 2007 19:59:46 +1100 From: Kush Murod [EMAIL PROTECTED] Reply-To: jQuery Discussion discuss@jquery.com To: jQuery Discussion. discuss@jquery.com Hi guys, if

Re: [jQuery] jEditable: how to remove behaviour

2007-03-29 Thread Sam Collett
On 28/03/07, Abel Tamayo [EMAIL PROTECTED] wrote: Hi all, I'm using jEditable for a webpage, but I would like to make it so that, once you've edited the text, the behaviour is removed and you can edit it no longer. Does anyone know how to do that? Thanks. You could try

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Rick Faircloth
D'oh! No actually it was a mind-reading test. :oP Here's what I'm running: $.post(Calc_Test_Process_Field_chris.cfm, Params, toggleButton); Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Heimlich Sent: Wednesday, March 28, 2007 11:36 PM To: jQuery Discussion

Re: [jQuery] comet

2007-03-29 Thread Erik Beeson
No, server push style AJAX. See here: http://en.wikipedia.org/wiki/Comet_%28programming%29 --Erik On 3/29/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: I've always wondered: what is comet, a code editor? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

[jQuery] addons.mozilla.org uses jQuery!

2007-03-29 Thread Sebastian Busch
Hi there, I hope this is not old news: http://addons.mozilla.org uses jQuery! -- cu Sebastian ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] ANNOUNCE: Tabs 2.7

2007-03-29 Thread Kevin Fricovsky
+1 ... this is slick. Thx! From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Widi Harsojo Sent: Friday, March 23, 2007 6:14 AM To: jQuery Discussion Subject: Re: [jQuery] ANNOUNCE: Tabs 2.7 Wow!. awesome... Thanks, Klaus. Widi

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Erik Beeson
Is something about it not working for you? --Erik On 3/29/07, Rick Faircloth [EMAIL PROTECTED] wrote: D'oh! No actually it was a mind-reading test… :oP Here's what I'm running: $.post(Calc_Test_Process_Field_chris.cfm, Params, toggleButton); Rick From: [EMAIL PROTECTED]

Re: [jQuery] jEditable: how to remove behaviour

2007-03-29 Thread Abel Tamayo
@Sam Collett: No, $(#myjeditable).unbind(click) doesn't work, but thanks for the idea. @Mark: Probably you are right, but I don't like messing with other's code, plus that would only slow me down and I promissed to have this project ready for this week (although it's just a pet project).

[jQuery] Interface Imagebox with Dynamic image lists problem

2007-03-29 Thread Dave Probert
Hi All, I'm using Interface (1.2) with jQuery (1.1.1) in a little gallery application (localhost based at the moment!). My problem seems to be that as I load a new gallery (Ajax) of images (with all the required 'rel' attributes etc) the Imagebox works perfectly for two or three galleries then

Re: [jQuery] Interface Imagebox with Dynamic image lists problem

2007-03-29 Thread Dave Probert
Forgot to mention that my testing is mainly with Firefox 2 on Windows XP (with Apache 2). Got other problems to solve for IE (so what's new there then!!! :) ) -- View this message in context: http://www.nabble.com/Interface-Imagebox-with-Dynamic-image-lists-problem-tf3222831.html#a8959238 Sent

Re: [jQuery] Found a bug?

2007-03-29 Thread Erik Beeson
That has to do with the - not being a valid character for a property name in javascript. Try either text-decoration or textDecoration. The same is true for any css attribute with a - in the name (background-image, font-size, margin-top, etc). --Erik On 3/29/07, Марат [EMAIL PROTECTED] wrote:

[jQuery] Found a bug?

2007-03-29 Thread Марат
Try this $('.anyclass').css({ text-decoration: underline, cursor: pointer, cursor: hand }); -- B.r. Marat ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Can it be done using JQuery

2007-03-29 Thread Andy Matthews
This site looks pretty cool, but that scrolling functionality TOTALLY causes both vert and hor scrollbars in IE7. Don't see a point to it... _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Kush Murod Sent: Thursday, March 29, 2007 1:05 AM To: jQuery Discussion Subject:

Re: [jQuery] Close any other row before showing a new one

2007-03-29 Thread Andy Matthews
Thanks Klaus...good point. I'll change that to something a little more meaningful. andy -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Klaus Hartl Sent: Wednesday, March 28, 2007 6:19 PM To: jQuery Discussion Subject: Re: [jQuery] Close any other row

Re: [jQuery] jEditable: how to remove behaviour

2007-03-29 Thread Mika Tuupola
On Mar 29, 2007, at 3:45 PM, Abel Tamayo wrote: Update: I've found that, when you apply $().editable on an object, it gets a new property-function called editable (that points at reset() in the plugin, but that doesn't matter now). I've tried removing this attribute like this

[jQuery] Can't post to jQuery list from the Google interface?

2007-03-29 Thread Andy Matthews
Anyone know why I can't post to the list from within the Google Groups interface? I tried responding to several posts last night as well as posting a new message yesterday afternoon and none of them have come through, even though the interface told me that my post was successful. Ideas?

[jQuery] CODE REVIEW: the fruits of today's labor - now with REAL CODE!

2007-03-29 Thread Andy Matthews
Sorry guys...I tried posting the code last night using the Google Groups interface, but it didn't come through. Here you go: http://www.commadelimited.com/uploads/psychic _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Andy Matthews Sent: Wednesday, March 28, 2007 4:59

[jQuery] bug found

2007-03-29 Thread Michel Brouckaert
this is a bug I found when using firebug to refresh some data in an menu.. code: $.post(rAction,{action:login,ddd:$(#ccc).val(),ddd:$(#ddd).val()},function(html){ $(html).insertAfter($(div#compte .padder fieldset h2)).load(errorVerif2());

Re: [jQuery] jEditable: how to remove behaviour

2007-03-29 Thread Mika Tuupola
On Mar 29, 2007, at 4:08 PM, Mika Tuupola wrote: On Mar 29, 2007, at 3:45 PM, Abel Tamayo wrote: Update: I've found that, when you apply $().editable on an object, it gets a new property-function called editable (that points at reset() in the plugin, but that doesn't matter now). I've

Re: [jQuery] Any regular expression gurus here?

2007-03-29 Thread Jake McGraw
Christof: This may be true of traditional regular expressions, which is something you'll encounter in a college level automata class but very rarely in the real world. The fact is that most modern, since the 80s at least, regex implementations (JavaScript, Java, PHP,...) can handle many

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Mike Alsup
I'm just wondering if we're getting into the toggleButton function, which should fire after all the params pass validation and are posted. Trying to make sure the syntax for the statement below looks correct, Rick, Please don't take this the wrong way, but why are you wondering? Put a

Re: [jQuery] CODE REVIEW: the fruits of today's labor - now with REAL CODE!

2007-03-29 Thread Alex Ezell
I really like the idea. Thanks for sharing. I noticed one behavior that was troubling, though perhaps intentional. After I click an arrow to view more, I tried clicking it again to close the row, but it seemed to just reload the data and flash back open the row. The only way to close a row seems

Re: [jQuery] bug found

2007-03-29 Thread Karl Swedberg
this might not actually be a bug. I have a hunch that it has to do with your use of .insertAfter() .insertAfter() will insert the elements one at a time in the correct order, but since each one is being inserted immediately after the h2, each is appearing before the previous one. I'm

Re: [jQuery] CODE REVIEW: the fruits of today's labor - now with REALCODE!

2007-03-29 Thread David Dexter
I would definitely consider adding close functionality to a menu that is already expanded. That way if a user clicks an arrow in the down state the row would collapse and the arrow would then point back to the right. David Dexter | brilliantlemming.com | Brentwood, CA | 310.414.0949

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Aaron Heimlich
On 3/29/07, Rick Faircloth [EMAIL PROTECTED] wrote: $.post(Calc_Test_Process_Field_chris.cfm, Params, toggleButton); That's definitely the correct syntax ( http://docs.jquery.com/Ajax#.24.post.28_url.2C_params.2C_callback_.29). Try adding something like alert(Toggling submit button); to

Re: [jQuery] Can't post to jQuery list from the Google interface?

2007-03-29 Thread John Resig
I don't think it's possible to post through the Google Groups interface yet. For whatever reason, they're taking like 4 days to move all the users over. I think I'm just going to move everything over tonight, anyway - forcing everyone to sign-up on the new list. It's going to suck, but I'm not

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Rick Faircloth
Thanks for the tip, Aaron. I've been using the alert for some feedback, as well as Firebug. As someone fairly new to JS, it all takes some getting used to. Thanks, too, for the other approach to the code and to the console code. Much appreciated! Rick From: [EMAIL PROTECTED]

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Rick Faircloth
Don't worry about insulting me... :o) I'm very new to all this and very well aware of my ignorance about the little things those of you who are experienced take for granted. I have been using the breakpoints and alerts and every other little trick I could think of to check things, but I thought

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Rick Faircloth
Also. thanks for actually answering the question I asked along with your other help. Rick From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Heimlich Sent: Thursday, March 29, 2007 10:33 AM To: jQuery Discussion Subject: Re: [jQuery] Correct way to setup a callback function

Re: [jQuery] Beta Testers needed for Form Plugin file upload support

2007-03-29 Thread Kush Murod
So when is it going alpha can't wait :) Harald Dietrich wrote: Sorry for the delay, but my feedback for IE was missing. I did not have any problems until now. So I think for FF and IE everything seems to be fine. Harald -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[jQuery] find dd's dt

2007-03-29 Thread Alexandre Plennevaux
hello! i guess i'm not too good in finding my way upwards in the DOM tree. I have a structure like this: dl#navigation dl#navigation dt dl#navigation dd ul li a.selected dl#navigation dt dl#navigation dd ul li a dl#navigation dt dl#navigation dd ul li a /dl all

Re: [jQuery] find dd's dt

2007-03-29 Thread Klaus Hartl
Alexandre Plennevaux schrieb: hello! i guess i'm not too good in finding my way upwards in the DOM tree. I have a structure like this: dl#navigation dl#navigation dt dl#navigation dd ul li a.selected dl#navigation dt dl#navigation dd ul li a dl#navigation dt

Re: [jQuery] Can't post to jQuery list from the Google interface?

2007-03-29 Thread Andy Matthews
Ah...I see... Thanks for clarifying John. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Resig Sent: Thursday, March 29, 2007 9:40 AM To: jQuery Discussion Subject: Re: [jQuery] Can't post to jQuery list from the Google interface? I don't think it's possible to

[jQuery] Collapsing table Columns?

2007-03-29 Thread Baxter
Any ideas how one could hide/show table columns, rather than rows? ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] CODE REVIEW: the fruits of today's labor - now withREALCODE!

2007-03-29 Thread Andy Matthews
Well, technically that's already there, but because of the way that I'm detecting open rows, if you click on a row that's already open, it has some weirdness to it. I'm going to change some of that out today. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David

Re: [jQuery] Collapsing table Columns?

2007-03-29 Thread Alexandre Plennevaux
Using the col element maybe? Otherwise, if it is the 3rd column you could do this: $(td+td+td).hide(); I dunno if that works, but it's the css way to address the 3rd column. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Baxter Sent: jeudi 29 mars

Re: [jQuery] CODE REVIEW: the fruits of today's labor - now withREALCODE!

2007-03-29 Thread Brad Perkins
Andy, I tried it in Opera 9 and it appears to be fine. I second the other posters comments about being able to collapse an expanded row. I was expecting that behavior and a little confused about the reload. best, Brad On 3/29/07, Andy Matthews [EMAIL PROTECTED] wrote: Well, technically

Re: [jQuery] CODE REVIEW: the fruits of today's labor - nowwithREALCODE!

2007-03-29 Thread David Dexter
Andy, I'd do something like this... $(document).ready( function(){ $('.row td img.open').bind(click, function() { var curImg = $(this); var id = curImg.parent().parent().attr(id); var idArr = id.split(-);

Re: [jQuery] bug found

2007-03-29 Thread Klaus Hartl
Michel Brouckaert schrieb: ok, that is actually an very true thought but still it's an quiet strict and weird interpretation of the words insertAfter.. This actualy means at the end that it is rather impossible to add an item after an root element without appending it.. There shouldn't be an

Re: [jQuery] CODE REVIEW: the fruits of today's labor -nowwithREALCODE!

2007-03-29 Thread David Dexter
Never satisfied until I test something I set up your code here with my modifications. http://brilliantlemming.com/test/andy.html Have a look at the source. There was one error in my if statement.. It should have read: if(curImg.attr(src).indexOf('tri_open') == -1){ Cheers,

Re: [jQuery] find dd's dt

2007-03-29 Thread Jonathan Sharp
Or possibly something along the lines of $('a.selected').parents('dd').prev() -js On 3/29/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hello! i guess i'm not too good in finding my way upwards in the DOM tree. I have a structure like this: dl#navigation dl#navigation dt

Re: [jQuery] CODE REVIEW: the fruits of today's labor -nowwithREALCODE!

2007-03-29 Thread Andy Matthews
Excellent. I was going to be doing something along those lines anyway David, but MANY thanks. You're a gentleman and a scholar. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Dexter Sent: Thursday, March 29, 2007 10:58 AM To: 'jQuery Discussion' Subject: Re:

Re: [jQuery] Beta Testers needed for Form Plugin file upload support

2007-03-29 Thread Klaus Hartl
Mike Alsup schrieb: I've added file upload support to the form plugin and I could use some help testing it out. If this feature interests you then go ahead and grab the beta plugin at: http://malsup.com/jquery/form/file/jquery.form.js Mike, GREAT stuff!!! I always hoped you would bake

[jQuery] Binding to multiple items with one call

2007-03-29 Thread Shelane Enos
This doesn't seem to be working: bindBlur = function(){ $j('#person', '#assigned').blur(function() { sendok=true; alert(sendok);} ); } But this does: bindBlur = function(){ $j('#person').blur(function() { sendok=true; alert(sendok);} ); } Do I have to do them all

Re: [jQuery] Collapsing table Columns?

2007-03-29 Thread Karl Swedberg
If it's the third column, you could also try this: $('td:nth-child(3)').hide() If you have ths in your table and need to hide them, too, you can do this: $('td:nth-child(3), th:nth-child(3)').hide() --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar

Re: [jQuery] Known memory leaks?

2007-03-29 Thread Choan Gálvez
On 28/03/2007, at 17:09, Markus Peter wrote: [...] We are currently trying to eliminate the memory leaks but are now running into a dead end. Same here. I'm currently investigating the ready hack for IE. As the `onreadystatechange` handler for the deferred script is defined as a closure,

Re: [jQuery] Can it be done using JQuery

2007-03-29 Thread Josh Nathanson
I agree, I found myself scrolling around looking for other content. I've seen flash implementations that were similar but you could see all the pages by scrolling horizontally. This one, I don't see the point...just confuses people. -- Josh - Original Message - From: Andy

Re: [jQuery] CODE REVIEW: the fruits of today's labor-nowwithREALCODE!

2007-03-29 Thread Andy Matthews
That's SLICK! Thanks for the update David. Appreciated. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Dexter Sent: Thursday, March 29, 2007 11:11 AM To: 'jQuery Discussion' Subject: Re: [jQuery] CODE REVIEW: the fruits of today's labor-nowwithREALCODE! Never

Re: [jQuery] jEditable: how to remove behaviour

2007-03-29 Thread Abel Tamayo
Wow, an answer from the very author of the plugin! Thanks very much, Mikka, will be trying it this evening. Abel. On 3/29/07, Mika Tuupola [EMAIL PROTECTED] wrote: On Mar 29, 2007, at 4:08 PM, Mika Tuupola wrote: On Mar 29, 2007, at 3:45 PM, Abel Tamayo wrote: Update: I've found that,

Re: [jQuery] Binding to multiple items with one call

2007-03-29 Thread Karl Swedberg
I think you just have a couple extra single-quotes in there: $j('#person', '#assigned').blur(function() { sendok=true; alert(sendok);} ); the selector here is trying to get the #person element within the context of the #assigned element. if you want to get both, you need to enclose them

Re: [jQuery] Known memory leaks?

2007-03-29 Thread Brandon Aaron
The ready hack for IE shouldn't be leaking but there is a patch to change it up a little to avoid a weird issue with iframes and refreshing the page. http://dev.jquery.com/ticket/1061 -- Brandon Aaron On 3/29/07, Choan Gálvez [EMAIL PROTECTED] wrote: On 28/03/2007, at 17:09, Markus Peter

Re: [jQuery] Correct way to setup a callback function

2007-03-29 Thread Aaron Heimlich
Your welcome. HTH. On 3/29/07, Rick Faircloth [EMAIL PROTECTED] wrote: Also… thanks for actually answering the question I asked along with your other help. Rick *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf Of *Aaron Heimlich *Sent:* Thursday, March 29, 2007 10:33 AM

[jQuery] Quickly find the width of the window

2007-03-29 Thread Kenneth Love
Hey all, I'm needing to find the width of the window so I can find the relative position of an element. Any help? Kenneth -- = the blog from beyond = = www.eyeheartzombies.com = ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Any regular expression gurus here?

2007-03-29 Thread Blair Mitchelmore
Also, when perl 6 is released it will have support for a much more powerful system called rules which can handle nested parentheses quite handily. -blair Jake McGraw wrote: Christof: This may be true of traditional regular expressions, which is something you'll encounter in a college level

Re: [jQuery] Quickly find the width of the window

2007-03-29 Thread Brandon Aaron
You could use the dimensions plugin which extends the $().width() method to work on window and document. $(window).width(); http://brandon.jquery.com/plugins/dimensions/ -- Brandon Aaron On 3/29/07, Kenneth Love [EMAIL PROTECTED] wrote: Hey all, I'm needing to find the width of the window so

Re: [jQuery] hoverIntent r5 = plug-in ready to be plugged-in

2007-03-29 Thread Brian Cherne
Thank you. That really means a lot! :) I had a similar need about 6 months ago. A client wanted a lot of information displayed in a tooltip, and there was the possibility of ~30 tooltips per page. We couldn't load all of that data at one time, so I wrote the beginnings of this script in pure,

Re: [jQuery] Collapsing table Columns?

2007-03-29 Thread Richard Thomas
You would need to hide every cell in the row, also I don't know if its fixed in jQuery but IE and Firefox differ in how to unhide the cell, one requires being set to block mode the other to table-cell or something, don't remember off the top of my head. On 3/29/07, Karl Swedberg [EMAIL PROTECTED]

Re: [jQuery] Binding to multiple items with one call

2007-03-29 Thread Shelane Enos
Thanks, perfect. I didn¹t see any examples of entering multiple items and trying to do a search through the list wasn¹t coming up with what I needed. On 3/29/07 9:49 AM, Karl Swedberg [EMAIL PROTECTED] wrote: I think you just have a couple extra single-quotes in there: $j('#person',

Re: [jQuery] jEditable: how to remove behaviour

2007-03-29 Thread Mika Tuupola
On Mar 29, 2007, at 7:47 PM, Abel Tamayo wrote: Thanks very much, Mikka, will be trying it this evening. Youre welcome :) Also make sure that you are running latest version of plugin. Support for callbacks was added in previous version. -- Mika Tuupola

Re: [jQuery] Collapsing table Columns?

2007-03-29 Thread Roman Weich
Baxter schrieb: Any ideas how one could hide/show table columns, rather than rows? I've made something like this some days ago. Maybe you want to take a look: http://p.sohei.org/jquery-plugins/columnmanager It's just a demo page right now, as I haven't found the time to document it yet.

[jQuery] Sortable list example has gone

2007-03-29 Thread Yoyo
Hi, There was one day on this list some nice example of reordering list (tree) using some new sorting algorithm in interface. Working example was at http://interface.eyecon.ro/demos/test_sort.html but now it's gone. I'm working now on a project where it will be very usefull to have such a

Re: [jQuery] Sortable list example has gone

2007-03-29 Thread David Dexter
Is this what you are looking for? http://interface.eyecon.ro/demos/sort_lists.html David Dexter | brilliantlemming.com | Brentwood, CA | 310.414.0949 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yoyo Sent: Thursday, March 29, 2007 11:16 AM

Re: [jQuery] Collapsing table Columns?

2007-03-29 Thread Karl Swedberg
On Mar 29, 2007, at 1:40 PM, Richard Thomas wrote: You would need to hide every cell in the row I don't know what you're getting at here. If you mean every cell in the *column*, then that is exactly what 'td:nth-child(n)' would get. But maybe I'm misunderstanding you. also I don't know

Re: [jQuery] Sortable list example has gone

2007-03-29 Thread Yoyo
Is this what you are looking for? http://interface.eyecon.ro/demos/sort_lists.html Not exacly. It was multilevel list (a tree) and you can reorder and sort its items at the same time. It was test example for new sorting algorigthm. ___ jQuery

Re: [jQuery] Can it be done using JQuery

2007-03-29 Thread Kenneth
It's sort of a novel concept, but I agree that it looks like it was implemented only to add some sort of 'wow' effect. It's not needed at all. IMO, the problem with it is, is that it doesn't give you any frame of reference for the movement. For example, if you were looking at a large map, and

Re: [jQuery] Collapsing table Columns?

2007-03-29 Thread Richard Thomas
Sorry I don't know the xpath/selectors that well yet. I had problems with just the show and hide in the past, so I had to use custom code like the following toggleClasstr = 'block' // Supports DOM2 requires specific style if ( window.addEventListener != undefined ) { toggleClasstr =

Re: [jQuery] Collapsing table Columns?

2007-03-29 Thread Brandon Aaron
The only time this still acts up is if you have the element display:none; in a style sheet. However there is a ticket to fix this issue with a patch that works 99% of the time. -- Brandon Aaron On 3/29/07, Richard Thomas [EMAIL PROTECTED] wrote: Sorry I don't know the xpath/selectors that well

Re: [jQuery] nightly builds

2007-03-29 Thread Brandon Aaron
What kind of problems are you having? I do know that there are some issues with fx in the nightlies but I don't know of any other issues. -- Brandon Aaron On 3/29/07, mmjaeger [EMAIL PROTECTED] wrote: anybody else experiencing problems with the nightly build downloads? -- View this message

Re: [jQuery] nightly builds

2007-03-29 Thread John Resig
I think he means with the builds being generated. I think it's having problems building the right builds, again. --John On 3/29/07, Brandon Aaron [EMAIL PROTECTED] wrote: What kind of problems are you having? I do know that there are some issues with fx in the nightlies but I don't know of any

Re: [jQuery] jEditable: how to remove behaviour

2007-03-29 Thread Abel Tamayo
@Mika: I just tried your solution and it works like a charm. Keep up with the good work because your plugin is excellent; this is my first time using Ajax at all and it's been pretty straightforward even using a your plugin because it's easily customizable and solid. On 3/29/07, Mika Tuupola

Re: [jQuery] Known memory leaks?

2007-03-29 Thread Choan Gálvez
On 29/03/2007, at 19:02, Brandon Aaron wrote: The ready hack for IE shouldn't be leaking but there is a patch to change it up a little to avoid a weird issue with iframes and refreshing the page. http://dev.jquery.com/ticket/1061 It shouldn't leak, but it does. And, although the leak is

Re: [jQuery] nightly builds

2007-03-29 Thread mmjaeger
I'm just unable to download them using IE7 - the links don't work for me. John Resig wrote: I think he means with the builds being generated. I think it's having problems building the right builds, again. --John On 3/29/07, Brandon Aaron [EMAIL PROTECTED] wrote: What kind of problems

[jQuery] loading gif not animating until fadeIn completes in IE

2007-03-29 Thread Robert O'Rourke
Hello everyone, Just enjoying reading this list, there's a lot to learn about jQuery =] I've managed to create a background image blend effect thats triggered from a thumbnail gallery but I'm struggling with a problem on one of my loading gifs in IE, it appears as expected over the

Re: [jQuery] comet

2007-03-29 Thread Glen Hinkle
Ok, I believe I've fixed it. It turns out I didn't need to print a null character; I replaced it with an empty string ($r-print()), the demo worked as expected in Firefox Opera. I assume IE still works as well, but I don't have a Windows box, so I can't say for sure. Again, this is

Re: [jQuery] Collapsing table Columns?

2007-03-29 Thread Karl Swedberg
Hey, no problem, Richard. I hope I didn't seem too abrupt with my reply. By the way, :nth-child() is actually a CSS3 (pseudo-class) selector: http://www.w3.org/TR/css3-selectors/#nth-child-pseudo it'll be really cool when browsers start supporting these. In the meantime, we have jQuery. :)

Re: [jQuery] loading gif not animating until fadeIn completes in IE

2007-03-29 Thread Yansky
I would've thought having the gif as the div's background would be the way to go. Perhaps instead of appending the image onclick, you could have it there already with a z-index that hides it, then changed the z-index onclick. Robert O wrote: Hello everyone, Just enjoying reading

Re: [jQuery] addons.mozilla.org uses jQuery!

2007-03-29 Thread Matt Stith
Dunno if its old news, but i certainly didnt know that, thats pretty cool! On 3/23/07, Sebastian Busch [EMAIL PROTECTED] wrote: Hi there, I hope this is not old news: http://addons.mozilla.org uses jQuery! -- cu Sebastian ___ jQuery mailing list

[jQuery] FW: addons.mozilla.org uses jQuery!

2007-03-29 Thread Andy Matthews
And it's not as surprising as you might think, especially when you remember that John Resig works for Mozilla (I believe). _ From: Andy Matthews [mailto:[EMAIL PROTECTED] Sent: Thursday, March 29, 2007 4:06 PM To: 'jQuery Discussion' Subject: RE: [jQuery] addons.mozilla.org uses jQuery!

Re: [jQuery] addons.mozilla.org uses jQuery!

2007-03-29 Thread Andy Matthews
Cool... Too bad it looks like they're only using it to determine if the document is ready. From addons.js: https://addons.mozilla.org/js/addons.js $(document).ready(ExpandListItem_init); $(document).ready(CollapseListItem_init); $(document).ready(ExpandAll_init);

Re: [jQuery] addons.mozilla.org uses jQuery!

2007-03-29 Thread Matt Stith
Its used in those 4 functions too, even though thats about it. On 3/29/07, Andy Matthews [EMAIL PROTECTED] wrote: Cool... Too bad it looks like they're only using it to determine if the document is ready. From addons.js: https://addons.mozilla.org/js/addons.js

Re: [jQuery] loading gif not animating until fadeIn completes in IE

2007-03-29 Thread Jake McGraw
Do you have a sample page? - jake On 3/29/07, Yansky [EMAIL PROTECTED] wrote: I would've thought having the gif as the div's background would be the way to go. Perhaps instead of appending the image onclick, you could have it there already with a z-index that hides it, then changed the

  1   2   >