[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. theland...@gmail.com wrote: http://www.designerschemes.com/ i am having problems with the dropshadow. it does not match the drop down

[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 andreabe...@gmail.com wrote: At this URLhttp://www.smsbig.it/ityou see an effect build with mootools. THis js change the css style of the

[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 ygpa...@gmail.com wrote: hello? Today, I have met

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

2008-08-20 Thread DanDan
);                        }                }        }); }; Karl Rudd On Wed, Aug 20, 2008 at 7:09 AM, DanDan [EMAIL PROTECTED] wrote: 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

[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.

[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  with