Re: [jQuery] IE opacity change weirdresult

2006-09-05 Thread kawikak
You need to give the element your are changing opactiy for layout. The easiest way to do this is to give the element a background color. Mohsen Saboorian-4 wrote: Hi, Is there any workaround for the problem of changing opacity in IE, which leads to text being displayed bold and weird?

Re: [jQuery] jCarousel

2006-09-07 Thread kawikak
Great code. One thing, the scrolling doesn't take into account if padding exists in the css for .jcarousel-list li elements. Not sure if it's tough to add or not but that would be great. Right now if padding is added the window is off after scrolling a bit. Very nice work though Jan Sorgalla

Re: [jQuery] jCarousel

2006-09-07 Thread kawikak
Thanks for the help. The problem was the padding needs to be added to the within the li and not the li itself. .jcarousel-list li img { padding: 1px; } Works now, thanks! Jan Sorgalla wrote: kawikak wrote: Great code. One thing, the scrolling doesn't take into account

Re: [jQuery] How to change value of select dropdown?

2006-09-20 Thread kawikak
I use this function to set the option of a drop down input. Works in IE6 and FF that I know of. You'll notice it only works well for options with unique values. You could probably easily change it if you needed otherwise. // Usage $([EMAIL PROTECTED]'State']).option( CA ); // Plugin