[jQuery] Re: Superfish

2009-12-06 Thread DanDan
You have a style in your default css that is wider than the intended superfish dropshadow effect: #nav li {padding-right: 20px;} On Dec 6, 1:50 pm, "d.a." wrote: > http://www.designerschemes.com/ > i am having problems with the dropshadow. > it does not match the drop down container. > any i

[jQuery] Re: how to set array value????

2009-10-23 Thread DanDan
I *think* you are probably right that the name of the input control is your problem: name="branch[address]" I wonder if your server side code is seeing the brackets escaped or unescaped. Can you rename the control? On Oct 23, 9:22 am, jacob wrote: > hello? > > Today, I have met something odd

[jQuery] Re: How to build this effect

2009-10-23 Thread DanDan
That is cool... I have seen this before as JQuery but not yet tried it: http://webdev.stephband.info/parallax.html On Oct 23, 9:46 am, Andrea - Aosta wrote: > At this URLhttp://www.smsbig.it/ityou see an effect build with > mootools. > THis js change the css style of the background when the mou

[jQuery] Re: Easy typewriter plugin, need some help with scope

2008-08-20 Thread DanDan
> >                        elem.html(contents.substr(0, count)); > >                        count++; > >                        if(count > contents.length){ >                                clearInterval(interval); >                        } >                } > >        }); > > }; > > Karl

[jQuery] Re: how to toggle text

2008-08-19 Thread DanDan
I think this is what you're looking for: http://docs.jquery.com/Attributes/attr you can stick something like this in the toggle function: $("#morelink").attr({ href: "www.google.com", alt: "Link to Google" }); On Aug 19, 12:44 pm, elz64 <[EMAIL PROTECTED]> wrote: > Hello, > > I begin

[jQuery] Easy typewriter plugin, need some help with scope

2008-08-19 Thread DanDan
Here's my code. The plugin should take the text from a container, erase the container, then print out the text one character at a time in a typewriter fashion. The problem is that setInterval() seems to think that addText() is undefined, because setInterval() runs at the 'window' scope level. I