[jQuery] Settimeout on Function

2009-08-30 Thread a1anm
Hi, I have this code: $(document).ready(function(){ $("#barcode span").hover( function () { $(this).addClass("barover"); }, function () { $(this).removeClass("barover"); } ); }); I would like to add a timeout so that the remov

[jQuery] Re: Settimeout on Function

2009-08-30 Thread a1anm
      function () { >                 $(this).addClass("barover"); >       }, >       function () { >            setTimeout(function() { >                 $(this).removeClass("barover"); >           }, 2000); >       } >     ); >   }); >

[jQuery] Re: Settimeout on Function

2009-08-31 Thread a1anm
;           }, 2000); >       } >     ); >   }); > > Note that the timer used here is 2000 milliseconds (2 seconds), so > you'll likely have to tweak that value to fit your needs. Hope that > helps. > On Aug 30, 7:22 pm, a1anm wrote: > > > > > Hi, &g

[jQuery] Select Span with Span Parent

2009-08-31 Thread a1anm
Hi, How would I select all spans which have a span as a parent? Thanks!

[jQuery] All Elements Except 2

2009-09-01 Thread a1anm
Hi, I'd like to select all elments on my page except 2. How would I do this? The elements I don't want to select are .bar6 and .homelink. Thanks.

[jQuery] Opera Issues

2009-09-12 Thread a1anm
Hi, I'm working on the below site: http://www.toomanydesigns.com/test/TMD/ I just tested it in the main browsers and it works fine apart from Opera. I understand the text positioning because Opera doesn't support this but does anyone know why the barcode slider isn't working correctly? I'm ne

[jQuery] Vertical Text

2009-09-22 Thread a1anm
Is it possible to rotate text so that is displays vertically using jQuery? Thanks!

[jQuery] Re: Vertical Text

2009-09-22 Thread a1anm
thanks. this is the method I'm using but it doesn't work in opera. going to try and fix that using jquery... On Sep 22, 7:45 pm, Karl Swedberg wrote: > On Sep 22, 2009, at 7:39 PM, a1anm wrote: > > > > > Is it possible to rotate text so that is displays

[jQuery] if opera...... else

2009-09-22 Thread a1anm
Hi, I would like to output the followin content if the browser isn't opera: home about portfolio services contact If the browser is o

[jQuery] Re: if opera...... else

2009-09-22 Thread a1anm
owser is still in the library > > http://docs.jquery.com/Utilities/jQuery.browser > > On Sep 22, 9:25 pm, a1anm wrote: > > > > > Hi, > > > I would like to output the followin content if the browser isn't > > opera: > > >                 > &

[jQuery] Add content

2009-09-24 Thread a1anm
Hi, I have an unordered list and I would like to use Jquery to add some 's to it. How do I do this? Thanks!