[jQuery] next release?

2010-01-06 Thread johnantoni
hi, any idea when the next version of jQuery is to be released?

[jQuery] next()

2009-12-03 Thread TMNT
Matt, thanks for your response. I had originally posted this on jquery-dev group but was referred to this group. How do I access the id of the jquery object returned from the next() function? I tried Matt's suggestion below but I get an 'undefined' when I alert state.attr('id'). thank you. From:

[jQuery] next index in Jquery

2009-07-03 Thread Smickie
I was wondering if someone could please help me with a little Jquery. Does anyone know how i would go about selecting the next .slide after the one with .current in it? how can i get the div index of the .current class? div id=slideshow div class=slideSlide 1/div div class=slideSlide 2/div div

[jQuery] Re: jQuery next() to find selectoption

2009-04-28 Thread George Adamson
Are you able to use the keyup event instead or does it need to be keydown? (Inside the keyup event handler the option:selected item should be the one you're after, instead of having to derive it.) Failing that could you just find the next/previous option by using selectedIndex +/-1 ? Something

[jQuery] Re: jQuery next() to find selectoption

2009-04-28 Thread dimitre
ACE Solution! Thanks more compact than this would be: works with keydown event too. do you think I'll have some problem with browser, etc? navigation is working with keyboard here: http://dmtr.org/ On Apr 28, 12:10 pm, George Adamson george.adam...@softwareunity.com wrote: Are you able to use

[jQuery] jQuery next() to find selectoption

2009-04-27 Thread dimitre
Hello I am using jQuery next() and prev() to navigate inside selectoption tags. problem is I am using optgroup too and can't find a way to make it work ex: select optgroup label=Motion option value=/m01/ 001/option option

[jQuery] Re: jQuery next() to find selectoption

2009-04-27 Thread Remon Oldenbeuving
option:selected').next('option').val()) location.href = n; }); If i get you right, this should do the trick? On Mon, Apr 27, 2009 at 10:30 PM, dimitre dimitr...@gmail.com wrote: Hello I am using jQuery next() and prev() to navigate inside selectoption tags

[jQuery] Re: jQuery next() to find selectoption

2009-04-27 Thread dimitre
, this should do the trick? On Mon, Apr 27, 2009 at 10:30 PM, dimitre dimitr...@gmail.com wrote: Hello I am using jQuery next() and prev() to navigate inside selectoption tags. problem is I am using optgroup too and can't find a way to make it work ex: select

[jQuery] Re: jQuery next() to find selectoption

2009-04-27 Thread Remon Oldenbeuving
('option').val()) location.href = n; }); If i get you right, this should do the trick? On Mon, Apr 27, 2009 at 10:30 PM, dimitre dimitr...@gmail.com wrote: Hello I am using jQuery next() and prev() to navigate inside selectoption tags. problem is I am using

[jQuery] next / siblings issue

2009-03-29 Thread Dunc
I'm building cascading selects, but because they could come from mulitple locations within the HTML, I need to capture the ID of the parent select (easy enough) and the child select. This correctly displays the parent select: var ddlSource = this.id; alert(ddlSource); This enumerates all

[jQuery] next and previous links with thumbs on mouseover

2009-03-28 Thread Victor Nogueira
Hi there, Want to know if it's possible to show thumbs attached prev/next anchors when I put the mouse over these navigation links. It would work like a preview tooltip for next/prev images. Thanks on advance and congrats for this great software.

[jQuery] next() question

2009-03-04 Thread Alexandre Plennevaux
Hello, say i have this markup: ul class=tab-nav-menu tab-menu lia class=tab-menu-item tab-menu-item-selected href=#fragment00/a/li lia class=tab-menu-item href=#fragment11/a/li lia class=tab-menu-item href=#fragment22/a/li lia class=tab-menu-item

[jQuery] Next/Previous element in each loop

2009-02-04 Thread Adrian Lynch
Hey all, I'm loop over some nodes with each() and I need to look at the next and previous elements for the current iteration. script type=text/javascript $(function() { $(div).each(function(i) { var prev = [SELECTOR FOR PREVIOUS DIV].text();

[jQuery] next() working in ff but not in iex

2009-01-30 Thread elduderino
Hi, I'm having a problem wit using next(). I have this code which i've built in to a simple test page which you could run to see my problem (obviously you need jquery included in the same directory). IN firefox next finds the div and I get the alert back...as expected. the div is a sibling of

[jQuery] next closet or what

2009-01-20 Thread spiraldev
I am trying to get the input element from the current selection so for instance when I check a checkbox I want the next checkbox to be checked now I can use .next() if the checkbox is right next toeach other but once I put a td or span it doesn't work this doesn't work table form method=post

[jQuery] next closet or what

2009-01-20 Thread spiraldev
I am trying to get the next function working this works table form method=post id=frmOne tr thName/th thLocation/th /tr tr id=3 td id=2input type=checkbox class=checkbox name=ss value=1 Spiraldev input

[jQuery] next() in a function

2008-11-24 Thread Vinoj
I'm having some trouble with next() and after reading through the posts I don't think it's similar to what has already been posted. The ideal behavior that I'd like is for the p (which is hidden at first) to be shown when the anchor tag above it is clicked. There is some extra behavior also

[jQuery] next() and prev()

2008-11-11 Thread PaulC
I'm stuck using next() and prev() The menu on right hand side of this site: http://sugarsnap.previewurl.net needs to scroll through each item as the user clicks the arrows. This is working but only because I've put fixed heights to scroll - which is buggy cross browser., hence wanting to use

[jQuery] next 'span' element that is not a sibling

2008-10-30 Thread Benjamin Ortuzar
Hi guys, I'm trying to navigate trough keywords, using jquery. So i would click on the 'next' link beside the highlighted keyword and it will take me with focus() to the next highlighted keyword within the div element. This is the code im using but its not working, since next() only searches for

[jQuery] .next() -- huh?

2008-10-15 Thread bnlps
hi, should be simple to say what's wrong ... well - alert() works, but alerts nothing / empty ... something like 'MOO!' or 'BETA!' would be great -- what's wrong with code? -- $(#nav div).hover(function(){alert($ (this).next('span').text());},function(){}); -- div

[jQuery] 'next' button to open next accordion panel

2008-10-02 Thread Slushbunny
I'm trying to include a next button in my accordion panels, but I'm not sure how to make it function. I have the panels sliding up and adding an active class fine when you click the panel headers, but I want to replicate this functionality on a next button also. Here's my page:

[jQuery] next() problems

2007-08-30 Thread ruperdupe
What I'm trying to do is when someone clicks on a h4 heading the next one has a class (top) added to it. In between each heading there are other elements. The h4s are inside a div called 'faq'. So far I've tried: jQuery('div.faq h4').click(function() { jQuery(this).next().addClass('top'); });

[jQuery] Next / Previous Links

2007-05-17 Thread Bradley Holloway
Hello Everyone! Here is my issue: I need to make the Previous and Next links function at this URL on the bottom right of the image holder, http://manhattanwest.com/media-center/video-images.php I have had a couple solutions sent to me, one PHP solution and one JS solution. (Thanks Sean

[jQuery] Next/Previous Links

2007-05-16 Thread Bradley32
Hey all! Here is the URL for the issue I am referring to: http://manhattanwest.com/media-center/video-images.php Problem: I need to make the Previous and Next links function to rotate through the 4 columns of links below the image area and unfortunately I am not the best with Javascript so