[jQuery] achieve archive functionality
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?
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 server to get new data which would then appear as new tree nodes. Is this doable? Thanks, Fred
Re: [jQuery] Superfish text color with parent - Really need help, thanks
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 traverse its children? Just about - it looked like superfish was adding the sfHover class to each item as it was hovered over and its menu expanded. You can use the Firefox addon Firebug to watch the classes and styles change. Nathan
[jQuery] DD_Roundies problem with link & background-image!!!! HELP!!!
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: 0px; border-right: 1px; border-top: 1px; border-bottom: 1px; border-style:solid; border-color:#CECECE; padding-right: 6px; -moz-border-radius-bottomright: 6px; -khtml-border-radius-bottomright: 6px; -webkit-border-bottom-right-radius: 6px; }
Re: [jQuery] Popup
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 tutorial should prove helpful: http://pixeline.be/blog/2008/javascript-loading-external-urls-in-jqmodal-jquery-plugin/ If you don't want to use an iframe I believe you'll have to send the request to your own server and have it fetch the external page you want to load since most browsers don't allow XSS. If you're going to do that, though, be careful! http://www.owasp.org/index.php/XSS Nathan
[jQuery] Popup
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 sort of empty ). The when I click a link, an external page would be loaded into this empty . So it would function just as it does in the above tutorial, expect the popup content would be coming from an another page, not within the page.
[jQuery] Cycle 2.75 - containerResize not working if image isn't direct child of container
Say I have: $(function() { $('.slideshow').cycle(); }); My caption My caption I'd like for the container to resize to the largest child size, but it doesn't look like in Safari/Chrome it can do this. It works in Firefox, but only after a refresh of the page. I'm guessing it's to do with the fact that the images aren't the direct child of the container div? Is it possible for this to work?
Re: [jQuery] Re: how to make this really beautifull pattern
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
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
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
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 can I make something like this How can I do so ? thanks so , How can I do so ? I'm waiting ... . How about you just look at the source code? http://www.altsoftware.com/alt_news_rotator.js There's comments and everything -- Jonathan Vanherpe - Tallieu & Tallieu nv - jonat...@tnt.be
Re: [jQuery] how to make this really beautifull pattern
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 or color. http://api.jquery.com/animate/ Nathan
RE: [jQuery] Re: how to make this really beautifull pattern
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 (English) Subject: [jQuery] Re: how to make this really beautifull pattern 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 can I > make something like this > > How can I do so ? > thanks so , How can I do so ? I'm waiting ... .
[jQuery] Re: how to make this really beautifull pattern
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 can I > make something like this > > How can I do so ? > thanks so , How can I do so ? I'm waiting ... .
[jQuery] Replace URL parameters
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 .. :-(