3
votes
3answers
139 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", …
0
votes
2answers
190 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 …
0
votes
4answers
591 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:
$(do …
1
vote
3answers
404 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 Que …
2
votes
4answers
508 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 ge …
0
votes
3answers
920 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 = textbeforecolo …
0
votes
2answers
118 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 the …
2
votes
3answers
128 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 a …
