[jQuery] achieve archive functionality

2010-02-10 Thread Bharani kumar srinivasan
is there any jquery plugin for achieve archive functionality -- Regards B.S.Bharanikumar http://php-mysql-jquery.blogspot.com/ Article JQUERY : checkbox,selectall,selectnone,invertselection,checkbox count

[jQuery] TreeView component - can we do a lazy load of node data?

2010-02-10 Thread fredbasset
Hi, I'm using the excellent tree view component in a Java web app. For simplicity I currently have it pre-load all the content for the tree (i.e. all the elements of the list). I'd prefer to have a scheme where when the user presses the '+' to expand a folder, then a request is made to the serve

Re: [jQuery] Superfish text color with parent - Really need help, thanks

2010-02-10 Thread Nathan Klatt
On Tue, Feb 9, 2010 at 9:15 PM, Gary Herbstman wrote: > So ".sf-menu li.sfHover > a" > > Applies that style to any A element that is a child of li.sfHover that > is a descendent of sf-menu. Right. > What in superfish is happening? Is the code setting the attribute > sfHover to the item when you

[jQuery] DD_Roundies problem with link & background-image!!!! HELP!!!

2010-02-10 Thread Erik
Hi everyone! Does anyone know how to make a link using css only with DD_Roundies for IE 7 ? CSS Example: .product_add { width: 96px; height: 40px; margin: 0px 0px 0px0px; float:left; cursor:pointer; background: url('/img/add.gif') no-repeat; background-color:#FF; border-left:

Re: [jQuery] Popup

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 11:56 AM, dtirer wrote: > I'm using the following JQuery Popup code to make smooth popups: > (http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth- > popup-using-jquery/) > > I was wondering how I can use use this to load external pages into the > popup? This

[jQuery] Popup

2010-02-10 Thread dtirer
I'm using the following JQuery Popup code to make smooth popups: (http://yensdesign.com/2008/09/how-to-create-a-stunning-and-smooth- popup-using-jquery/) I was wondering how I can use use this to load external pages into the popup? So instead of having a hidden in the page, there would be some s

[jQuery] Cycle 2.75 - containerResize not working if image isn't direct child of container

2010-02-10 Thread David Winter
Say I have: $(function() { $('.slideshow').cycle(); }); My caption My caption I'd like for the container to resize to the largest child size, bu

Re: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 8:56 AM, Jonathan Vanherpe (T & T nv) wrote: > How about you just look at the source code? > > http://www.altsoftware.com/alt_news_rotator.js > > There's comments and everything FTW!!!

Re: [jQuery] Replace URL parameters

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 5:48 AM, Jakub wrote: >    function Dummy(){ >      adress = window.location.href; >      regex = "/^&(.*?)?$/"; >      adress = adress.replace(regex,''); >      alert(adress); >    } One problem is you don't want to put quotes around the regex. Nathan

Re: [jQuery] Replace URL parameters

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 5:48 AM, Jakub wrote: > I want to replace all parameters, but first. I don't know what is > wrong .. :-( Could you give an example of what you want to happen? I.e., an input string and what you want it to look like after the replace? Nathan

Re: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Jonathan Vanherpe (T & T nv)
hno wrote: hno wrote: HI I have seen this pattern in http://www.altsoftware.com/index.php . there are news menu in the left side . Please visit this site . The news will be change with a really beautiful pattern in every 5 seconds I think it has been written with jquery but I don't know how c

Re: [jQuery] how to make this really beautifull pattern

2010-02-10 Thread Nathan Klatt
On Wed, Feb 10, 2010 at 12:27 AM, hno wrote: > I have seen this pattern in http://www.altsoftware.com/index.php . > there are news menu in the left side . Please visit this site . The > news will be change with a really beautiful pattern in every 5 > seconds Just animate the position and opacity

RE: [jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread Rick Faircloth
I would start by having a look at the functionality of this plug-in: http://malsup.com/jquery/cycle/ Hope this helps... Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of hno Sent: Wednesday, February 10, 2010 9:46 AM To: jQuery (En

[jQuery] Re: how to make this really beautifull pattern

2010-02-10 Thread hno
hno wrote: > HI > I have seen this pattern in http://www.altsoftware.com/index.php . > there are news menu in the left side . Please visit this site . The > news will be change with a really beautiful pattern in every 5 > seconds > > I think it has been written with jquery but I don't know how ca

[jQuery] Replace URL parameters

2010-02-10 Thread Jakub
Hello there! I have function: function Dummy(){ adress = window.location.href; regex = "/^&(.*?)?$/"; adress = adress.replace(regex,''); alert(adress); } I want to replace all parameters, but first. I don't know what is wrong .. :-(