[jQuery] Re: Hover In/Out with quick mouse movements

2008-10-16 Thread tobaco
try the stop()-function http://docs.jquery.com/Effects/stop $('#topbar').hover(function() { $('.prev, .next').fadeIn('slow'); }, function() { $('.prev, .next').stop().fadeOut('slow'); }); On 16 Okt., 11:33, davebowker <[EMAIL PROTECTED]>

[jQuery] Re: [validate] how to test text against a bad word list?

2008-09-22 Thread tobaco
value); > > Jörn > > On Mon, Sep 22, 2008 at 3:50 PM, tobaco <[EMAIL PROTECTED]> wrote: > > > hm, i tried it this way, > > >                var badwordlist = new Array("Nice Site", "Good Work", "xxx", > > "u

[jQuery] Re: [validate] how to test text against a bad word list?

2008-09-22 Thread tobaco
r one of the bad words … this return !/nice site|good work|xxx|aciphex|url=http|nude/.test(value); works fine. On 22 Sep., 14:32, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > Sure. You can create a regexes on the fly with new RegExp("bla") and > use that instead

[jQuery] Re: [validate] how to test text against a bad word list?

2008-09-22 Thread tobaco
uh, that was fast! thx, i will give it a try. aehm, is it possible to put the bad word in an array and test this. On 22 Sep., 13:31, "Jörn Zaefferer" <[EMAIL PROTECTED]> wrote: > return !/bad|word|must|not|match/.test(value); > > Jörn > > On Mon, Sep 22,

[jQuery] [validate] how to test text against a bad word list?

2008-09-22 Thread tobaco
hi, i'm using the excellent validate-plugin and it works like a charm. now i want to test the text in a textarea against a list of bad words. how must be the syntax of the custom validation rule? i'm very bad in regex … thanks in advance, tobaco

[jQuery] Re: Toggle Only the below the on click

2008-09-19 Thread tobaco
try it this way: $(function(){ $('[EMAIL PROTECTED]"http://";]').attr('target', '_blank'); $('[EMAIL PROTECTED]"https://";]').attr('target', '_blank'); $(".stripes dd").hide(); $(".stri

[jQuery] Re: innerfade element with opacity and IE

2008-06-19 Thread tobaco
i don't think, that there is much you can do about it. you could change your approach and use a semi-transparent png24 as background-image for the caption instead of setting the opacity. this should do it. On 20 Jun., 01:26, aronduby <[EMAIL PROTECTED]> wrote: > Hey everyone, I've run into an is

[jQuery] Re: jQuery.Preload - 4 in 1 image preloader

2008-03-05 Thread tobaco
wow! you have a massive output on plugins! it seems to me, that you release one per day. thx for all. great work On 6 Mrz., 03:19, Ariel Flesler <[EMAIL PROTECTED]> wrote: > If anyone was having issues with Safari 2, they've been fixed in the > last release. > > Cheers > > Ariel Flesler > > On

[jQuery] Re: jquploader 2 alpha 1 - rich file upload dialog plugin - please test and help

2008-01-31 Thread tobaco
looks good, but works for me only in FF 2 and Safari 3 on Win XP. not in ie 6+7 and opera 9.25 is there a possibility to delete or change the selected file? cheers, torsten On 31 Jan., 12:36, "Alexandre Plennevaux" <[EMAIL PROTECTED]> wrote: > Hello friends, > > I am working on the new version

[jQuery] Re: $(this) and bind()? Noobish questions...

2008-01-24 Thread tobaco
hi, for 01. try this: $(this).find(".thumb").animate({ "height": "50px" }, "fast"); for 02.: "hover" is just a "helper-function". it simplifies the process of binding. see this example from the blog-entry (http://jquery.com/blog/ 2008/01/15/jquery-122-2nd-birthday-present/) for the latest jqu

[jQuery] Re: Why this simple code isn't working

2007-12-14 Thread tobaco
> $("#add_linha").emtpy().append(data); it should be empty() not emtpy() ... On 14 Dez., 13:36, Marcelo Wolfgang <[EMAIL PROTECTED]> wrote: > Hi all, > > I'm banging my head on the keyboard here ... and couldn't figure out > why this isn't working I have the following code: > > HTML: > >

[jQuery] Re: Set Div Width

2007-05-22 Thread tobaco
aehm, try this: ...).children('div').css( {width: '80px'} ); On 22 Mai, 14:21, SamCKayak <[EMAIL PROTECTED]> wrote: > I'm setting the width of a DIV using: > > ...).children('div').attr( {width: ('80px'} ); > > It seems to have no effect (I have margin:0 auto; set in CSS). > > The rendered (vi

[jQuery] Re: Tabs Plugin - Hiding all Tabs at startup

2007-05-14 Thread tobaco
hm, :-/ sad to hear. do you have any suggestions how to do this in a quick and dirty version? thanks! On 14 Mai, 19:04, Klaus Hartl <[EMAIL PROTECTED]> wrote: > tobaco wrote: > > hi there, > > > is it possible to hide all tab-container at start-up and also not >

[jQuery] Tabs Plugin - Hiding all Tabs at startup

2007-05-14 Thread tobaco
hi there, is it possible to hide all tab-container at start-up and also not select the current tab in the navigation? thanks!

[jQuery] Re: Best practice for image source change

2007-04-05 Thread tobaco
you could this also do it this way: $("a.images").click(function() { var large_img = $(this).attr('href'); $("#mainImage").attr('src', large_img); return false; }); this way it's more accessible for users without javascript On 5 Apr., 12:49, "Oddish" <[EMAIL PROTECTED]> wrote: