[jQuery] fade and rotate text

2009-09-29 Thread koolkat
I am looking for the best way to rotate the displayed text . Text should also fade in and out. I have tried the innerfade plugin but was wondering what else might be available.

[jQuery] Re: width animation

2009-09-15 Thread koolkat
I realize this has the wrong url for demo. It is here: http://letmehaveblog.blogspot.com/2007/10/haccordion-simple-horizontal-accordion.html Does anyone have any hints about this animation issue? On Sep 11, 6:20 pm, koolkat wrote: > I am using the haccordion plugin which works via a wi

[jQuery] width animation

2009-09-11 Thread koolkat
I am using the haccordion plugin which works via a width animation. However, when an accordion header is on the right side, clicking another accordion header causes it to move left during the animation before going back to its correct spot on the right. The plugin demo and code is here:http://grou

[jQuery] haccordion - horizontal accordion.

2009-09-11 Thread koolkat
I am using the haccordion plugin which works via a width animation. However, when an accordion header is on the right side, clicking another accordion header causes it to move left during the animation before going back to its correct spot on the right. The plugin demo and code is here:http://grou

[jQuery] Re: Form validation plugin

2009-04-17 Thread koolkat
2009 at 1:48 AM,koolkat wrote: > > > I have been using the form validation plugin with jquery 1.2.6. I > > would like to use the new jquery version 1.3.2 but was wondering if > > there is a replacement validation  plugin  for this version or if it > > could be made to work. > > > Thank you.

[jQuery] Form validation plugin

2009-04-15 Thread koolkat
I have been using the form validation plugin with jquery 1.2.6. I would like to use the new jquery version 1.3.2 but was wondering if there is a replacement validation plugin for this version or if it could be made to work. Thank you.

[jQuery] Re: xml parsing

2009-03-13 Thread koolkat
I tried that but IE still does not work. An other ideas? Thanks. Now one more question, after On Mar 12, 4:57 am, Paul Hutson wrote: > Ah ha - the IE nasty problem, I solved it like this : > > On Ajax Success : >         var xml; >         if($.browser.msie){ >                 xml = new ActiveX

[jQuery] xml parsing

2009-03-11 Thread koolkat
I have been reading through the group but I can't find exactly what I am looking for. I am using jquery get to process an xml file and am wonder about a few things. 1. How do I get the function to use the data I pass in, in this case name:"yyy" 2. the code below works in FF but IE7 returns a blank

[jQuery] Re: Email Validation

2008-08-28 Thread koolkat
;s what the code does: > - breaks the comma separated list of addresses into an array of > addresses > - iterates over that array of items > - strips any whitespace from the beginning or end of each address > - searches for valid address constuction > - flags any that aren't p

[jQuery] Re: Email Validation

2008-08-28 Thread koolkat
every instance of the loop validate the email adress > > /Hasse > > On Aug 25, 9:05 pm,koolkat<[EMAIL PROTECTED]> wrote: > > > Is it possible to use jquery to validate a comma separated list of > > emails? If yes, how should this be done? > > Thanks

[jQuery] Password and Equalto

2008-08-26 Thread koolkat
I have two input boxes: password and password confirmation. The password confirmation has the following validation code: equalTo: "Please enter the same password as above" This works fine as long as the user enters the password first. However, if the reverse happens and the user enters the confir

[jQuery] Email Validation

2008-08-25 Thread koolkat
Is it possible to use jquery to validate a comma separated list of emails? If yes, how should this be done? Thanks