[jQuery] Re: Cycle plugin with link functionality

2009-11-11 Thread zac
nevermind.. i figured it out On Nov 11, 1:08 pm, zac 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 wrote: > > > > Hi, I have the cycle plugin setup so a series of thumbnails o

[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 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 > > example...http://www.m

[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] 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] 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 trigg

[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 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 ? > > --- > Alexandru Dinulesc

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

2009-04-08 Thread Zac Spitzer
a gold assayer would test gold. If you > find they make sense, conform to your experience, and don't harm yourself > or others, only then should you accept them.' > >   From:       Zac Spitzer                             >                  

[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] 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 wrote: > oh, very nice.  I wasn't aware of toggleClass. > > On Feb 27, 6:51 pm, Karl Swedberg wrote: > > > Hi Zac, > > > You just need to add one line -- $(this).toggleClass('yourClass'); --   > > w

[jQuery] Help please with toggling a class

2009-02-27 Thread zac
ground: #151515; padding: 50px; 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
ide(); var 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,

[jQuery] Re: hoverIntent and Accordion

2009-02-20 Thread zac
"dt a").hoverIntent( overFn, outFn ); > > // OR // > > $("dt a").hoverIntent({ >     over: overFn, >     out: outFn > > }); > > Let me know if this helps, > Brian. > > On Fri, Feb 20, 2009 at 3:57 PM, zac

[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"); ret