1
vote
2answers
92 views
next instance of
hello!
trying to get the next matching element in a list;
var newScrollX = $('#projectImages li').next(".instOf"+myNo);
the above works but i don't want it to go back to earlier instances in the …
0
votes
3answers
58 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:
…
1
vote
3answers
51 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
138 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 …
0
votes
8answers
126 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>
…
5
votes
3answers
108 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
173 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() {
…
0
votes
2answers
289 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
136 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 …
1
vote
3answers
514 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
4answers
941 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:
…
2
votes
4answers
644 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 …
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 = …
2
votes
3answers
140 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 …
