[jQuery] jQuery UI 1.7.2 released

2009-06-12 Thread Neal Jansons
Download: http://blog.jqueryui.com/2009/06/jquery-ui-172/ Changelog Summary This is a maintenance release for jQuery UI 1.7. It changes only the plugins listed below. In addition to the plugin fixes below, 7 new themes were added: Sunny, Overcast, Le Frog, Flick, Pepper Grinder, Eggplant and

[jQuery] Re: FadeIn problems

2007-08-27 Thread Neal
Hi Anders, http://63.241.146.156/contact.html I'm interested in why the paragraphs float in Safari, and why I don't see any fade-in in IE6 and IE7. Regards, Neal On Aug 26, 1:29 pm, Anders Mattson [EMAIL PROTECTED] wrote: Could you post the html as well? It's much easier to understand what

[jQuery] FadeIn problems

2007-08-24 Thread Neal
I have a page with several DIVs, and inside each DIV are paragraphs and headings. On the side I have a list of named anchors. My script adds an onclick event to the anchors that hides all of the DIVs, then fades the selected DIV. It looks fantastic in FireFox, but there's no fade in IE6 or IE7.

[jQuery] Re: how do iterate through array of JQery objects

2007-08-24 Thread Neal
Thank you Both Richard and Karl, .each() works perfectly. I'm new to JQuery, but I'm catching on. Regards, Neal On Aug 23, 10:28 am, Richard D. Worth [EMAIL PROTECTED] wrote: I should've checked that. Thanks. - Richard On 8/23/07, Karl Swedberg [EMAIL PROTECTED] wrote: On Aug 23

[jQuery] how do iterate through array of JQery objects

2007-08-23 Thread Neal
I'm having problems iterating through an array of JQuery objects. Here's my code: var x = $(#skip a); for (var i=0;ia.length;i++){ var n = x[i]; $(n).click(function(){ $(n.hash).hide(); $(#primary h1).after( $(n.hash)[0] );