[jQuery] Cycle plugin with link functionality

2009-11-11 Thread zac
Hi, I have the cycle plugin setup so a series of thumbnails of the image switch the bigger image upon mouseover. Much like this example... http://www.malsup.com/jquery/cycle/pager6.html except mine works by hovering over the thumbs like: .cycle({ fx: 'fade', speed: 'fast',

[jQuery] Re: Cycle plugin with link functionality

2009-11-11 Thread zac
Thanks for the response Mike.. could you please show me an example as I am not clear on this... On Nov 11, 1:04 pm, Mike Alsup mal...@gmail.com wrote: Hi, I have the cycle plugin setup so a series of thumbnails of the image switch the bigger image upon mouseover.  Much like this

[jQuery] Re: Cycle plugin with link functionality

2009-11-11 Thread zac
nevermind.. i figured it out On Nov 11, 1:08 pm, zac zacharyf...@gmail.com wrote: Thanks for the response Mike.. could you please show me an example as I am not clear on this... On Nov 11, 1:04 pm, Mike Alsup mal...@gmail.com wrote: Hi, I have the cycle plugin setup so a series

[jQuery] jCarousel and links

2009-09-14 Thread zac
HI I am trying to work with the jCarousel plugin by Ian Sorgalla http://sorgalla.com/jcarousel/ Does anyone know how I could wrap a link around each of the images in the Carousel ?

[jQuery] Re: Getting the current page HTML URL via JQuery variable

2009-07-12 Thread Zac Witte
you don't need jquery - just window.location alert(window.location); On Jul 12, 4:50 am, Alexandru Adrian Dinulescu alex.d.a...@gmail.com wrote: I am trying to get the current page HTML URL (the one at the top in the address box) and place it in a variable. Any help ? ---

[jQuery] validate plugin only checking first required input

2009-07-12 Thread Zac Witte
the validate plugin at the form at the below URL is validating as true as long as the first required input is valid even though subsequent required fields are invalid. It even gives the invalid class to all fields correctly but the submitHandler function is triggered anyway. I have an alert

[jQuery] problem with IE extracting the document title from an ajax request response

2009-04-08 Thread Zac Spitzer
Is there a trick with IE for extracting the title from an ajax response? This works fine in FF but fails in IE using 1.3.2 var newTitle=$(response).filter(TITLE); it's a horrible problem to google as title is sooo common z

[jQuery] Re: problem with IE extracting the document title from an ajax request response

2009-04-08 Thread Zac Spitzer
find they make sense, conform to your experience, and don't harm yourself or others, only then should you accept them.'   From:       Zac Spitzer zac.spit...@gmail.com                                                                                     To:         jQuery (English) jquery-en

[jQuery] Accordion and external controls

2009-03-01 Thread zac
I have a accordion menu that expands and contracts with mouse over: $(dd).hide(); var overFn = function(){ $(dd:visible).slideUp(slow); $(this).parent().next().slideDown(slow); }; // hover delay var outFn = function(){}; $(dt a).hoverIntent({ over: overFn,

[jQuery] Re: Help please with toggling a class

2009-02-28 Thread zac
Great! Thanks!! On Feb 27, 7:09 pm, Josh Powell seas...@gmail.com wrote: oh, very nice.  I wasn't aware of toggleClass. On Feb 27, 6:51 pm, Karl Swedberg k...@englishrules.com wrote: Hi Zac, You just need to add one line -- $(this).toggleClass('yourClass'); --   where yourClass

[jQuery] Help please with toggling a class

2009-02-27 Thread zac
; border: 2px solid #000; display: none; } But I am not sure how I would also have the link itself (.aboutlink) have a class toggled on and off. simultaneously. Can someone please help me write this? I am very new and just learning so would really appreciate some help. Thanks, Zac

[jQuery] Re: hoverIntent and Accordion

2009-02-21 Thread zac
overFn = function(){ $(dd:visible).slideUp(slow); $(this).parent().next().slideDown(slow); return false; }; var outFn = function(){}; $(dt a).hoverIntent({ over: overFn, sensitivity: 3, interval: 150, out: outFn, }); }); On Feb 20, 9:44 pm, zac zacharyf

[jQuery] hoverIntent and Accordion

2009-02-20 Thread zac
I am trying to add the hoverIntent plugin to this basic accordion menu such as this: $(dd).hide(); $(dt a).hover(function(){ $(dd:visible).slideUp(slow); $(this).parent().next().slideDown(slow); return

[jQuery] Re: hoverIntent and Accordion

2009-02-20 Thread zac
know if this helps, Brian. On Fri, Feb 20, 2009 at 3:57 PM, zac zacharyf...@gmail.com wrote: I am trying to add the hoverIntent plugin to this basic accordion menu such as this: $(dd).hide();                $(dt a).hover(function(){                        $(dd:visible).slideUp(slow