Re: [jQuery] blockui crushes IE6

2007-03-19 Thread Seb Duggan
Wow - that's a lot of scripts! I had the same problem. Appears that IE6 crashes if it's in standards mode (removing the DOCTYPE solves the problem). Mike has just (today) released 1.0.1 which seems to fix the problem. Get it from the BlockUI site. Seb amircx wrote: > > hey. i got this cod

Re: [jQuery] BlockUI over ActiveX plugin

2007-03-13 Thread Seb Duggan
Hi Mike, I'll send it to you off-list, as it's a development site... Seb On 13 Mar 2007, at 10:43, Mike Alsup wrote: Is it possible to get BlockUI to overlay an ActiveX control in IE? I am using the XStandard XHTML editor plugin for a CMS; form submission is via an AJAX call, while displa

[jQuery] BlockUI over ActiveX plugin

2007-03-13 Thread Seb Duggan
Is it possible to get BlockUI to overlay an ActiveX control in IE? I am using the XStandard XHTML editor plugin for a CMS; form submission is via an AJAX call, while displaying a BlockUI message over the page. In Firefox and Safari, the BlockUI message appears over the plugin; but in IE,

[jQuery] Testing... please ignore...

2007-03-08 Thread Seb Duggan
Sorry, had some problems with my spam service. Just checking this gets through now it's turned off... Seb ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] List slow?

2007-03-07 Thread Seb Duggan
I don't know if it's just me, or if anyone else has had problems, but I've had no messages from the list all day, and then a few minutes ago I had a few that were 10 hours old... If it's just me, I'll investigate further... Seb ___ jQuery mailing

Re: [jQuery] Safari Crashing

2007-03-05 Thread Seb Duggan
afari because they're using the initial 1.1.2 release. And for most of them, it won't be an issue they'll know about because they're not using Safari... Seb On 5 Mar 2007, at 18:01, Seb Duggan wrote: > Yes, fixes my problem too... > > > Seb _

Re: [jQuery] Safari Crashing

2007-03-05 Thread Seb Duggan
Yes, fixes my problem too... Seb On 5 Mar 2007, at 17:42, Brad Perkins wrote: > John, > > Yes, installing the latest build fixes the problem. > > Thanks for the speedy reply and for such an awesome library! > > best, > > Brad Perkins ___ jQuery ma

Re: [jQuery] Parent and Single Parent Element Selection

2007-03-05 Thread Seb Duggan
Maybe something like: $('.colorPick').change(function() { $(this).parent().parent().addClass('assigned'); }); where colorPick is the class assigned to your select menu. You could also use: $('.colorPick').change(function() { $(this).parents('tr').addClass('assigned'); }); b

Re: [jQuery] Safari Crashing

2007-03-05 Thread Seb Duggan
I've had similar problems with 1.1.2 on Safari, not just with AJAX calls. I've reverted to a recent nightly build of jQuery, and it's behaving itself... Seb On 5 Mar 2007, at 17:02, Brad Perkins wrote: > Are there any known issues where jQuery would crash Safari? > > I'm testing using jQue

[jQuery] prependTo element's own parent

2007-03-05 Thread Seb Duggan
I want to take an element, and prepend it to its own parent element. How would I do this? Seb ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Submit a form (POST) to a Thickbox panel

2007-03-04 Thread Seb Duggan
I see how to do this with a normal HTML page, but how do I submit the data via POST and get the resulting page into a Thickbox iframe? Seb On 4 Mar 2007, at 19:16, Erik Beeson wrote: > Use Thickbox in iframe mode and bounce the content off your server. > On 3/4/07, Seb Duggan &

[jQuery] Submit a form (POST) to a Thickbox panel

2007-03-04 Thread Seb Duggan
I'm working on a CMS application, and want to create a preview button. What I want it to do is take the form content, pass it to a preview page which will be loaded into a Thickbox (or similar) overlay, but not submit the main form. The content of the form is likely to be too long to send as

Re: [jQuery] jQuery 1.1.2

2007-02-28 Thread Seb Duggan
I've noticed a problem in Safari too, this time with the datePicker plugin (also written by Kelvin - sorry!). When clicking the date picker icon, Safari immediately crashes every time when using the 1.1.2 release. However, I've tested with every single nightly build, from Feb 18 to Feb 28,

Re: [jQuery] Toggling

2007-02-24 Thread Seb Duggan
This should do it (not tested): $(".parent").click(function() { $(this).next(".sub").toggle(400); return false; }); Seb On 24 Feb 2007, at 15:39, poncjusz wrote: Hi everyone I've html code: Something Something Something Something Something

Re: [jQuery] jquery rocks

2007-02-24 Thread Seb Duggan
Hi Tyler, One of the great things with jQuery is how quickly you'll find yourself giving other people advice... What you're asking about is one of the first things I tried to do in jQuery, although your HTML structure is slightly different from mine (mine was simple nested unordered lists).

Re: [jQuery] Thickbox and FF Mac

2007-02-23 Thread Seb Duggan
I see what you mean about the resizing, but this happens even without resizing the window. If you set the window so it's bigger than the content (before loading the page!) the Thickbox background overlay only goes down as far as the bottom of the content, not the bottom of the window (as in

[jQuery] Thickbox and FF Mac

2007-02-23 Thread Seb Duggan
I've got a site which uses a Thickbox gallery at: http://www.dnesd.com The pictures down the right hand side link to a Thickbox gallery. It all works fine, except for in Firefox Mac (2.0.0.1), where for some reason the background doesn't cover the whole window. For those who don't have a Mac

Re: [jQuery] Big problem with FF2, flickering on all animate effect

2007-02-22 Thread Seb Duggan
On 22 Feb 2007, at 08:46, Sanyi wrote: I already use 1.1.1 jQuery. Brandon's point was that it has been fixed SINCE the 1.1.1 release. (1.1.1 was still broken - I had the same problem). I updated to the latest nightly build, and it works perfectly! Seb

Re: [jQuery] Setting an image caption width

2007-02-14 Thread Seb Duggan
Great stuff, Klaus! The more I learn about jQuery, the more I wish I'd discovered it before! Seb On 14 Feb 2007, at 14:06, Klaus Hartl wrote: > > make it: > > (function($) { > $.fn.imgCaption = function() { > return this.each(function() { > var img = $('img', this)

Re: [jQuery] Setting an image caption width

2007-02-14 Thread Seb Duggan
Not sure I agree on the title attribute not being suitable, but I see your point on the alt. Nevertheless, I want to change this: Into this: Some text I want to use as the caption Nad have come up with a similar problem to before. This is what I have, and I know the $(this) doesn't work

Re: [jQuery] Setting an image caption width

2007-02-13 Thread Seb Duggan
Perfect, Klaus! Thanks, that does exactly what I want it to. Now to rewrite the HTML, so the float div is generated automatically, and the caption is generated from the alt attribute... Seb On 13 Feb 2007, at 21:03, Klaus Hartl wrote: > Stupid me, I forgot a return statement (too much Rub

Re: [jQuery] Which file to download from SVN?

2007-02-13 Thread Seb Duggan
Thanks Karl - that's very useful. And yes, the FF flicker is now fixed! Seb On 13 Feb 2007, at 16:21, Karl Swedberg wrote: Hi Seb, If you want to do an SVN checkout, the instructions at http:// docs.jquery.com/Downloading_jQuery should help. If you just want to quickly grab a file, feel

Re: [jQuery] Setting an image caption width

2007-02-13 Thread Seb Duggan
Thanks Klaus. Yes, I'm using jQuery 1.1. However, this still doesn't seem to work. Try the sample code with a longer caption, and this: $('div.image p').click( function() { alert( $(this).width() ); }); Now, clicking the caption will report its actual width. It's not being limited to the wi

[jQuery] Setting an image caption width

2007-02-13 Thread Seb Duggan
I've got a number of pictures with captions that will be floated right in the main body text. The HTML looks like this: A caption for the image Because the images will vary in width, I don't want to hard-code the width into the stylesheet. But I don't want the caption ever to be

[jQuery] Which file to download from SVN?

2007-02-13 Thread Seb Duggan
OK, I'm not very well up on SVN... I've read that the latest build on SVN might fix the problem of flickering in FF Mac, so thought I'd download it to test... Which file/branch/etc. should I be trying? Seb ___ jQuery mailing list discuss@jquery.co

Re: [jQuery] Multi-level concertina menu

2007-02-12 Thread Seb Duggan
bmenu will be expanded when you reach the target page. But that's handled server-side, not by jQuery. Seb On 12 Feb 2007, at 12:09, Olaf Bosch wrote: > Seb Duggan schrieb: > >> I have two problems: >> >> 1. In Firefox on the Mac, on clicking a link, the toggled

Re: [jQuery] Menu flicker in FF Mac (was: Wait for event to complete)

2007-02-12 Thread Seb Duggan
Oops... sorry, problem with my IMAP drafts... Ignore this post! Seb On 12 Feb 2007, at 11:34, Seb Duggan wrote: > I've actually streamlined my concertina menu code now, and decided > that it wasn't actually necessary to have one event wait for the > previous one (coul

Re: [jQuery] Menu flicker in FF Mac (was: Wait for event to complete)

2007-02-12 Thread Seb Duggan
I've actually streamlined my concertina menu code now, and decided that it wasn't actually necessary to have one event wait for the previous one (couldn't get it to work, anyway...) My code now works with a nested menu structure, with no extra classes needed in the HTML, and will expand/clo

Re: [jQuery] Multi-level concertina menu (was: Wait for event to complete)

2007-02-12 Thread Seb Duggan
Thanks Rey... I've actually streamlined my concertina menu code now, and decided that it wasn't actually necessary to have one event wait for the previous one (couldn't get it to work, anyway...) My code now works with a basic nested menu structure, with no extra classes needed in the HTML

Re: [jQuery] Wait for event to complete

2007-02-06 Thread Seb Duggan
Oops... apologies for the email garbage... On 6 Feb 2007, at 19:29, Seb Duggan wrote: > > -- > Content-Transfer-Encoding: 7bit > Content-Type: text/plain; > charset=US-ASCII; > format=flowed > ___ jQuery mailing li

[jQuery] Wait for event to complete

2007-02-06 Thread Seb Duggan
I'm just starting up with jQuery, and have run into a problem with my navigation menu. It's a vertical accordion menu, with each section opening when clicked, and any other open sections close. Also, a section will close if it's open and clicked. So, I have the following code attached to