[jQuery] Re: jquery question on slideUp fadeIn and show

2009-09-14 Thread kev.

It's a moot point anyway.  Got into work this morning to find that the
embedded browser in the price checkers doesn't play nice with even the
slideIn/slideOuts. :\

kev.

On Sep 14, 7:29 am, "ryan.j"  wrote:
> have you tried to use a callback instead of the setTimeout?
>
> On Sep 14, 11:37 am, "kev."  wrote:
>
> > Hi All,
>
> > jquery noob question here.  I've got a php script that runs a few
> > price
> > checker kiosks out on the sales floor at work and I've got a 
> > element
> > that I can get to slide up when a product is scanned and slide back
> > down
> > after a 5 second pause with:
>
> >         $(function() {
> >                 $("p").slideUp("slow");
> >                 setTimeout(function(){ $("p").slideDown("slow"); },
> > 5000);
>
> > });
>
> > but when I change the slideUp and slideDown to fadeIn and fadeOut I'm
> > not
> > getting the element to fade in or out.  Instead the element shows up
> > on the
> > screen then after 5 seconds the element appears in the position where
> > it
> > ends up after a slideUp.
>
> > Similarly if I change the slideUp and slideDown to 'show' and 'hide'
> > the
> > element again shows up in the spot that it starts the slideUp from
> > then
> > slides up after 5 seconds.
>
> > Any thoughts on what I'm doing wrong?
>
> > Thanks in advance.


[jQuery] jquery question on slideUp fadeIn and show

2009-09-14 Thread kev.

Hi All,

jquery noob question here.  I've got a php script that runs a few
price
checker kiosks out on the sales floor at work and I've got a 
element
that I can get to slide up when a product is scanned and slide back
down
after a 5 second pause with:

$(function() {
$("p").slideUp("slow");
setTimeout(function(){ $("p").slideDown("slow"); },
5000);
});

but when I change the slideUp and slideDown to fadeIn and fadeOut I'm
not
getting the element to fade in or out.  Instead the element shows up
on the
screen then after 5 seconds the element appears in the position where
it
ends up after a slideUp.

Similarly if I change the slideUp and slideDown to 'show' and 'hide'
the
element again shows up in the spot that it starts the slideUp from
then
slides up after 5 seconds.

Any thoughts on what I'm doing wrong?

Thanks in advance.


[jQuery] Re: Validate Display Error Message

2009-09-11 Thread Kev

Anything?

On Sep 11, 12:12 am, Kev  wrote:
> Hello,
>
> I was wondering is there a way where I can display my error codes in
> the Label tag rather than outside of tthe input fields? If so how can
> I do that?
>
> Thanks


[jQuery] Validate Display Error Message

2009-09-11 Thread Kev

Hello,

I was wondering is there a way where I can display my error codes in
the Label tag rather than outside of tthe input fields? If so how can
I do that?

Thanks


[jQuery] Re: tablesorter - Force Null / Empty Cells to the Bottom?

2009-03-12 Thread Big Mad Kev

Yep thats it basic numeric sort with nulls on bottom.

>From what I have read I don't think a parser will help unless I've
misunderstood

Thanks for your quick reply.

On Mar 12, 10:08 pm, aquaone  wrote:
> You could define your own parser to do this. Are you looking for a basic
> numeric sort with nulls on bottom? lexicographical sort? ..?
>
> stephen
>
> On Thu, Mar 12, 2009 at 11:52, Big Mad Kev  wrote:
>
>
>
> > Good Morning / Afternoon / Evening,
>
> > Using the tableSorter does anyone know if it's possible to all ways
> > force null / empty / 0 Digit cells to always be at the bottom, The
> > solution I have is to have additional columns with either 0/1 for
> > ASC / DEC Sorts and sorting on that first.
>
> > But I need a more elegant way, I'm sure it's possible but I have tried
> > everything I can think off.
>
> > Any help is appreacited
>
> > TIA
>
> > Kev


[jQuery] tablesorter - Force Null / Empty Cells to the Bottom?

2009-03-12 Thread Big Mad Kev

Good Morning / Afternoon / Evening,

Using the tableSorter does anyone know if it's possible to all ways
force null / empty / 0 Digit cells to always be at the bottom, The
solution I have is to have additional columns with either 0/1 for
ASC / DEC Sorts and sorting on that first.

But I need a more elegant way, I'm sure it's possible but I have tried
everything I can think off.

Any help is appreacited

TIA

Kev


[jQuery] After click, two events occurring at the same time... why?

2008-06-17 Thread Kev

I'm developing this site, here is the current snapshot:
http://tester.hearsaynashville.com/services

If you click on either "Contact Us" or "Client Login" in the upper
left, or on the gray "Ready to Get Started?" button, you'll see a
slideDown. Excellent. Now click the same button. It scrolls up,
exactly like I want it to, all smooth and nice. Now try it again, but
click one of the buttons and then a different one. One panels slides
up at the same time as the other sliding down. Why is that? I can't
figure out how to get one panel to scroll up before the next one
scrolls down. Here's my code:

$(document).ready(function(){

$(".contact-slide").click(function(){
if ($(".panels:not(#contact-panel)").is(":visible")) {
$(".panels").slideUp("fast");
}
$("#contact-panel").slideToggle("normal");
return false;
});

$(".client-slide").click(function(){
if ($(".panels:not(#client-panel)").is(":visible")) {
$(".panels").slideUp("fast");
}
$("#client-panel").slideToggle("normal");
return false;
});

$(".getstarted-slide").click(function(){
if ($(".panels:not(#getstarted-panel)").is(":visible")) {
$(".panels").slideUp("fast");
}
$("#getstarted-panel").slideToggle("normal");
return false;
});

});