Tagged Questions

5
votes
3answers
106 views

def next() for Python pre-2.6? (instead of object.next method)

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?
3
votes
3answers
164 views

Finding the next input (of a parent?) with jQuery

Hi guys, I've got a checkbox inside a table, and when you click on it, it'll change the background colour accordingly like so... $("#table tr td :checkbox").bind("click change", function() { …
2
votes
4answers
581 views

jQuery toggle next two elements

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). The event is triggered correctly, but I can't get the elements to …
2
votes
3answers
137 views

Have you ever used NSZoneMalloc() instead of malloc()?

Cocoa provides for page-aligned memory areas that it calls Memory Zones, and provides a few memory management functions that take a zone as an argument. Let's assume you need to allocate a block of …
1
vote
3answers
28 views

jquery find next element with class

I'm having a brain fart here...I'm trying to find the next element with a class of "error" and hitting a wall. In looking at the demo on jQuery's site, this should work, but doesn't. …
1
vote
2answers
132 views

Python: next() function

I'm learning Python from a book, and I came across this example: 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 …
1
vote
3answers
487 views

jQuery nextAll — Click on h-element toggles all p-elements until next h

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: <h3>The First Question</h3> …
0
votes
3answers
35 views

Jquery find next/prev elements of a certain class but not necessarily siblings

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: …
0
votes
8answers
99 views

JQuery select the next element

Hey, I am trying to use JQuery to select the next element in a set of elements with the same class. Here is the HTML setup: <div class="sameClass selected"> <p>Text in here</p> …
0
votes
2answers
249 views

Setting the focus to the next input in jQuery?

Hi guys, 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. I have this at the moment which works …
0
votes
2answers
133 views

Efficient algorithm for Next button on a MySQL result set

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 …
0
votes
4answers
800 views

Jquery - .next() with children of many parents

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: …
0
votes
3answers
1k views

Reading text with Java Scanner next(Pattern pattern)

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 = …