hot questions tagged next - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T06:13:24Z http://stackoverflow.com/feeds/tag?tagnames=next&sort=hot http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1827482/jquery-find-next-prev-elements-of-a-certain-class-but-not-necessarily-siblings 0 Jquery find next/prev elements of a certain class but not necessarily siblings Gnuffo1 2009-12-01T16:52:55Z 2009-12-03T06:11:43Z <p>The next, prev, nextAll and prevAll methods are very useful, but not if the elements you are trying to find are not in the same parent element. What I want to do is something like this:</p> <pre><code>&lt;div&gt;&lt;span id="click"&gt;hello&lt;/span&gt;&lt;/div&gt; &lt;div&gt;&lt;p class="find"&gt;world&gt;&lt;/p&gt;&lt;/div&gt; </code></pre> <p>When the span with the id "click" is pressed, I want to match the next element with the class "find", which in this case is not a sibling of the clicked element so next or nextAll won't work.</p> http://stackoverflow.com/questions/1793944/jquery-find-next-element-with-class 1 jquery find next element with class Loony2nz 2009-11-25T00:34:52Z 2009-11-25T00:43:05Z <p>I'm having a brain fart here...I'm trying to find the next element with a class of "error" and hitting a wall.</p> <p>In looking at the demo on jQuery's site, this should work, but doesn't.</p> <p><code>$("button[disabled]").next().text("this button is disabled");</code></p> <blockquote> <p><code>&lt;div&gt;&lt;button disabled="disabled"&gt;First&lt;/button&gt; - &lt;span&gt;no overwrite&lt;/span&gt;&lt;span class="error"&gt;&lt;/span&gt;&lt;/div&gt;</code></p> <p><code>&lt;div&gt;&lt;button&gt;Second&lt;/button&gt; - &lt;span&gt;&lt;/span&gt;&lt;/div&gt;</code></p> <p><code>&lt;div&gt;&lt;button disabled="disabled"&gt;Third&lt;/button&gt; - &lt;span&gt;no overwrite&lt;/span&gt;&lt;span class="error"&gt;&lt;/span&gt;&lt;/div&gt;</code></p> </blockquote> <p>Excuse the bad formatting...but I'm trying to find the span or div or whatever after the element in question, like the button above.</p> <p>so the disabled button line should read, 'no overwrite this button is diabled'</p> <p>I've tried</p> <p><code>$("button[disabled]").next(".error").text("this button is disabled");</code></p> <p>to no avail.</p> <p>help :)</p> <p>thanks!</p> http://stackoverflow.com/questions/1716428/def-next-for-python-pre-2-6-instead-of-object-next-method 5 def next() for Python pre-2.6? (instead of object.next method) behindthefall 2009-11-11T16:35:51Z 2009-11-14T01:32:10Z <p>Python 2.6+ and 3.* have next(), but pre-2.6 only offers the object.next method. Is there a way to get the next() style in pre-2.6; some "def next():" construction perhaps?</p> http://stackoverflow.com/questions/1733004/python-next-function 1 Python: next() function Nimbuz 2009-11-14T02:17:05Z 2009-11-14T03:49:51Z <p>I'm learning Python from a book, and I came across this example:</p> <pre><code>M = [[1,2,3], [4,5,6], [7,8,9]] G = (sum(row) for row in M) # create a generator of row sums next(G) # Run the iteration protocol </code></pre> <p>Since I'm an absolute beginner, and the author hasn't provided any explanation of the example or the next() function, I don't understand what the code is doing.</p> http://stackoverflow.com/questions/1728466/jquery-select-the-next-element 0 JQuery select the next element Eef 2009-11-13T10:43:37Z 2009-11-13T12:54:08Z <p>Hey,</p> <p>I am trying to use JQuery to select the next element in a set of elements with the same class.</p> <p>Here is the HTML setup:</p> <pre><code>&lt;div class="sameClass selected"&gt; &lt;p&gt;Text in here&lt;/p&gt; &lt;/div&gt; &lt;div class="differentClass"&gt; &lt;p&gt;Text in here &lt;/div&gt; &lt;div class="sameClass"&gt; &lt;p&gt;Text in here&lt;/p&gt; &lt;/div&gt; </code></pre> <p>When I have the first div with the class "sameClass" I would like to remove the "selected" class from the top div and apply it to the next div with the class "sameClass" so the results are like so:</p> <pre><code>&lt;div class="sameClass"&gt; &lt;p&gt;Text in here&lt;/p&gt; &lt;/div&gt; &lt;div class="differentClass"&gt; &lt;p&gt;Text in here &lt;/div&gt; &lt;div class="sameClass selected"&gt; &lt;p&gt;Text in here&lt;/p&gt; &lt;/div&gt; </code></pre> <p>I hope you get what I mean :)</p> <p>UPDATE:</p> <p>I have found that this one works the best.</p> <pre><code>$(".sameClass.selected").nextAll(".sameClass:first").andSelf().toggleClass("selected") </code></pre> <p>I have encountered one bug with it how ever, if the HTML is like so:</p> <pre><code>&lt;p&gt; &lt;div class="sameClass"&gt; &lt;p&gt;Text in here&lt;/p&gt; &lt;/div&gt; &lt;div class="differentClass"&gt; &lt;p&gt;Text in here &lt;/div&gt; &lt;div class="sameClass selected"&gt; &lt;p&gt;Text in here&lt;/p&gt; &lt;/div&gt; &lt;/p&gt; &lt;p&gt; &lt;div class="sameClass"&gt; &lt;p&gt;Text in here&lt;/p&gt; &lt;/div&gt; &lt;/p&gt; </code></pre> <p>It will not select the "sameClass" which is in the second P block. Any idea why this is happening?</p> <p>Eef</p> http://stackoverflow.com/questions/1277700/finding-the-next-input-of-a-parent-with-jquery 3 Finding the next input (of a parent?) with jQuery Nick 2009-08-14T12:55:40Z 2009-08-14T13:41:49Z <p>Hi guys,</p> <p>I've got a checkbox inside a table, and when you click on it, it'll change the background colour accordingly like so...</p> <pre><code>$("#table tr td :checkbox").bind("click change", function() { $this = $(this); // cache the jquery object if($this.is(':checked')) { $this.closest('tr').css('background-color', 'lightyellow'); } else { $this.closest('tr').css('background-color', '#fff'); } }); </code></pre> <p>That works just fine, however, I figured I'd like to go one better, so anywhere on the table row you click, it'll check the box and highlight the row.</p> <p>I tried using this code, but it doesn't work unfortunately:</p> <pre><code>$("table tr").bind("click", function() { $(this).parents("tr").find(":checkbox").attr('checked'); }); </code></pre> <p>And here's the HTML code (removed excessive stuff to improve readability...</p> <pre><code>&lt;td&gt;Name&lt;/td&gt; &lt;td&gt;Description&lt;/td&gt; &lt;td&gt;&lt;input type="checkbox"&gt;&lt;/td&gt; </code></pre> <p>Any help would be very much appreciated, thank you!</p> http://stackoverflow.com/questions/1232379/setting-the-focus-to-the-next-input-in-jquery 0 Setting the focus to the next input in jQuery? Nick 2009-08-05T10:30:01Z 2009-08-05T10:47:51Z <p>Hi guys,</p> <p>I've currently got a script that'll check for the value of a select box, and then enable a text field right next to it, and then hopefully set focus.</p> <p>I have this at the moment which works fine at enabling the input field...</p> <pre><code>$("#assessed select").change(function () { if($(this).val() == 'null') { $(this).next('input').attr("disabled", true); } else { $(this).next('input').removeAttr("disabled"); } }); </code></pre> <p>I'm a bit stuck on the 'focus' bit to be honest, I tried "$(this).next('input').focus();" but that didn't focus at all, although it didn't bring up a Javascript error either...</p> <pre><code>$("#assessed select").change(function () { if($(this).val() == 'null') { $(this).next('input').attr("disabled", true); $(this).next('input').focus(); } else { $(this).next('input').removeAttr("disabled"); } }); </code></pre> <p>Any ideas please guys? I'm really stuck on this and it'd be a very simple, but very useful addition to the page I'm building!</p> <p>Thanks</p> http://stackoverflow.com/questions/1079753/jquery-next-with-children-of-many-parents 0 Jquery - .next() with children of many parents dig412 2009-07-03T15:03:24Z 2009-07-03T15:24:22Z <p>I'm writing a script to highlight table cells across multiple tables, in a calendar. The days to be highlighted have the class "available". This is the jQuery code currently:</p> <pre><code>$(document).ready(function(){ $("td.available").mouseenter(function() { $(this).addClass("highlight"); $(this).next().addClass("highlight"); }); $("td.available").mouseleave(function() { $(this).removeClass("highlight"); $(this).next().removeClass("highlight"); }) }); </code></pre> <p>However, highlighting only works within the table containing the element being hovered over. I assume .next() isn't operating over the set returned by <code>$("td.available")</code>, but over the raw DOM.</p> <p>What function should i be using to operate over the set properly?</p> <p>Edit: What I want to happen is for the adjacent cell to be highlighted as well. This could be expanded so the next 7 cells are highlighted as well, for example.</p> <p>If I hover over the cell containing 31, the other cells to highlight are going to be in another table, containing the next month. I'm guessing I need to use some variety of "each" to get a set of td elements.</p> http://stackoverflow.com/questions/1079938/jquery-nextall-click-on-h-element-toggles-all-p-elements-until-next-h 1 jQuery nextAll -- Click on h-element toggles all p-elements until next h Christoph 2009-07-03T15:54:28Z 2009-07-03T21:25:29Z <p>Hi, i'm creating an FAQ page where the answer is toggled by clicking on the question. The question is h3 and the answer is several "p" elements. Like this:</p> <pre><code>&lt;h3&gt;The First Question&lt;/h3&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;h3&gt;The Second Question&lt;/h3&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; &lt;p&gt;Answer Paragraph&lt;/p&gt; </code></pre> <p>How can I toggle all p elements belonging to a certain question? My JS toggles ALL following p elements on the page:</p> <pre><code>$(document).ready(function(){ $("p").hide(); $("h3").click(function(){ $(this).nextAll("p").toggle(); }); }); </code></pre> <p>(I cannot use div's or classes). Thank you for any help!</p> http://stackoverflow.com/questions/1017921/jquery-toggle-next-two-elements 2 jQuery toggle next two elements BrynJ 2009-06-19T13:19:40Z 2009-06-19T14:58:06Z <p>I have a form select element that, when a certain value is selected, will toggle two other elements on the page (a dt / dd pair). </p> <p>The event is triggered correctly, but I can't get the elements to toggle - note I am using class selectors because the number of these element "sets" on the page is variable. Here is my code:</p> <pre><code>$(".lender_id").change(function () { if($(this).val()=='45') { $(this).next(".lender_other1").toggle(); $(this).next(".lender_other2").toggle(); } }); </code></pre> <p>lender_id is my select element class, html code as follows (as stated this element set can appear multiple times on the page):</p> <pre><code>&lt;dt&gt;Lender&lt;/dt&gt; &lt;dd&gt;&lt;select name="lender_id[1]" class="lender_id"&gt; &lt;option value="1"&gt;Value&lt;/option&gt; &lt;option value="45"&gt;Special Value&lt;/option&gt; &lt;/select&gt;&lt;/dd&gt; &lt;dt class="lender_other1" style="display:none;"&gt;Lender Name&lt;/dt&gt; &lt;dd class="lender_other2" style="display:none;"&gt; &lt;input type="text" name="lender_other[1]" value="" /&gt;&lt;/dd&gt; &lt;dt&gt;Lender&lt;/dt&gt; &lt;dd&gt;&lt;select name="lender_id[2]" class="lender_id"&gt; &lt;option value="1"&gt;Value&lt;/option&gt; &lt;option value="45"&gt;Special Value&lt;/option&gt; &lt;/select&gt;&lt;/dd&gt; &lt;dt class="lender_other1" style="display:none;"&gt;Lender Name&lt;/dt&gt; &lt;dd class="lender_other2" style="display:none;"&gt; &lt;input type="text" name="lender_other[2]" value="" /&gt;&lt;/dd&gt; etc... </code></pre> http://stackoverflow.com/questions/842496/reading-text-with-java-scanner-nextpattern-pattern 0 Reading text with Java Scanner next(Pattern pattern) burntsugar 2009-05-09T01:59:55Z 2009-05-09T03:16:12Z <p>I am trying to use the Scanner class to read a line using the next(Pattern pattern) method to capture the text before the colon and then after the colon so that s1 = textbeforecolon and s2 = textaftercolon.</p> <p>The line looks like this:</p> <p>something:somethingelse</p> http://stackoverflow.com/questions/1083221/efficient-algorithm-for-next-button-on-a-mysql-result-set 0 Efficient algorithm for Next button on a MySQL result set David Grayson 2009-07-05T00:13:09Z 2009-07-07T06:30:46Z <p>I have a website that lets people view rows in a table (each row is a picture). There are more than 100,000 rows. You can view different subsets of the rows, and you can view them with different sort orders. While you are viewing one of the rows, you can click the "Next" or "Previous" buttons to go the next/previous row in the list.</p> <p>How would you implement the "Next" and "Previous" features of the website?</p> <p>More specifically, if you have an arbitrary query that returns a list of up to 100,000+ rows, and you know some information about the current row someone is viewing, how do you determine the NEXT row efficiently?</p> <p>Here is the pseudo-code of the solution I came up with when the website was young, and it worked well when there were only 1000 rows, but now that there are 100,000 rows I think it is eating up too much memory.</p> <pre><code>int nextRowId(string query, int currentRowId) { array allRowIds = mysql_query(query); // Takes up a lot of memory! int currentIndex = (index of currentRowId in allRowIds); // Takes time! return allRowIds[currentIndex+1]; } </code></pre> <p>While you are thinking about this problem, remember that the website can store more information about the current row than just its ID (for example, the position of the current row in the result set), and this information can be used as a hint to help determine the ID of the next row.</p> <p><strong>Edit</strong>: Sorry for not mentioning this earlier, but this isn't just a static website: rows can often be added to the list, and rows can be re-ordered in the list. (Much rarer, rows can be removed from the list.) I think that I should worry about that kind of thing, but maybe you can convince me otherwise.</p> http://stackoverflow.com/questions/593241/have-you-ever-used-nszonemalloc-instead-of-malloc 2 Have you ever used NSZoneMalloc() instead of malloc()? benzado 2009-02-27T01:49:20Z 2009-02-27T07:54:08Z <p>Cocoa provides for page-aligned memory areas that it calls <a href="http://developer.apple.com/documentation/Cocoa/Conceptual/MemoryMgmt/Articles/mmZones.html" rel="nofollow">Memory Zones</a>, and provides a few memory management functions that take a zone as an argument.</p> <p>Let's assume you need to allocate a block of memory (not for an object, but for arbitrary data). If you call <code>malloc(size)</code>, the buffer will always be allocated in the default zone. However, somebody may have used <code>allocWithZone:</code> to allocate your object in another zone besides the default. In that case, it would seem better to use <code>NSZoneMalloc([self zone], size)</code>, which keeps your buffer and owning object in the same area of memory.</p> <p>Do you follow this practice? Have you ever made use of memory zones?</p> <p>Update: I think there is a tendency on Stack Overflow to respond to questions about low-level topics with a lecture about premature optimization. I understand that zones probably mattered more in 1993 on NeXT hardware than they do today, and a Google search makes it pretty clear that virtually nobody is concerned with them. I am asking anyway, to see if somebody could describe a project where they made use of memory zones.</p>