Tagged Questions
The next tag has no wiki summary.
6
votes
1answer
1k views
Jquery tabs next button
How can I create a button that will scroll to the next Jquery tab. I want to have a next button within the tabs that will scroll to the next tab, sort of like a step-by-step tutorial. How can this be ...
5
votes
1answer
106 views
Next with Revolution R's foreach package?
I've looked through much of the documentation and done a fair amount of Googling, but can't find an answer to the following question: Is there a way to induce 'next-like' functionality in a parallel ...
5
votes
2answers
854 views
javascript node.js next()
I see a lot of use next in node.js.
What is it, where does it come from? What does it do? Can I use it client side?
Sorry it's used for example here:
http://dailyjs.com/2010/12/06/node-tutorial-5/
...
5
votes
4answers
1k views
Python: rewinding one line in file when iterating with f.next()
Python's f.tell doesn't work as I expected when you iterate over a file with f.next():
>>> f=open(".bash_profile", "r")
>>> f.tell()
0
>>> f.next()
"alias rm='rm -i'\n"
...
5
votes
3answers
212 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?
4
votes
2answers
288 views
itertools.cycle().next()?
Well, I was using itertools.cycle().next() method with Python 2.6.6, but now that I updated to 3.2 I noticed that itertools.cycle() object has no method next().
I used it to cycle a string in the ...
4
votes
8answers
857 views
Pull elements from next foreach item in PHP?
I'm doing a PHP 'traffic light' style warning system for my website, that basically says' if there is X percentage change between the current array entry and the next one, throw an error'.
So, I'm ...
4
votes
4answers
3k views
“Continue” (to next iteration) on VBScript
A colleague and I were trying to figure out a way of doing the equivalent of a "continue" statement within a VBScript "For/Next" loop.
Everywhere we looked we found people had no way to do this in ...
4
votes
2answers
150 views
Jquery Select element 2 positions further - another way to .next().next()
I am searching for a way how I could select a div element which is not the direct next one to the one which is "selected" by a click function.
<div ...
4
votes
4answers
340 views
How to overwrite the “next” slot in a QWizard?
Hi:
I'm using a QWizard class, which contains several QWizardPage.
For some pages, I need to do something when "Next" button is clicked.
I tried to overwrite the "next" slot in QWizard class, ...
4
votes
2answers
1k 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 ...
3
votes
4answers
59 views
calling the next item in my array
right now I have an array of videos. How do I make it so when i click next and prev the next or previous video in the array loads.
<video id="video" controls autoplay width="1000">
...
3
votes
1answer
125 views
Next parameter in CouchDB Session API?
In a Couchapp, I would like to have a login form that works without Javascript.
The wiki page about the Session API states that one can provide a next parameter to _session to be redirected after ...
3
votes
3answers
171 views
Skip iteration from yield block in ruby
Trying to use an ill-conceived framework which collects a list of results from a passed-in block, effectively this:
def sigh(&block)
r = (1..3).collect do |i|
yield(i)
end
# do ...
3
votes
2answers
110 views
jQuery next (ish) selector
I've been banging my head against a wall with this code all morning and finaly decided to come here for some help.
I have the following markup.
<h3 class="element-title">Summary <span ...
3
votes
1answer
877 views
Access the next button event android
I don't know if it's very clear, but i'm trying to do something when the "next" (bottom right corner of the keyboard) is pressed, and i can't find its keycode.
I have tried to look for "next" or ...
3
votes
1answer
1k views
UITextField, automatically move to next after 1 character
Scenario: I have 4 UITextFields that only accept 1 character. Easy.
Problem: After I enter the 1 character, I want the next TextField to become active automatically without having to press next (i.e. ...
3
votes
4answers
1k 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:
...
3
votes
3answers
5k 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.
...
3
votes
3answers
2k views
Finding the next input (of a parent?) with jQuery
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() {
$this = ...
3
votes
3answers
387 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 ...
2
votes
2answers
39 views
How do I select the next “select” (dropdown) in this HTML?
My html is:
<tr>
<td><select id = "delAppSelectApp" name="delAppSelectApp"><option value="--Select--"> --Select--</option></select></td>
...
2
votes
3answers
71 views
jQuery looping .fadeIn and .fadeOut of p tags within div one at a time
The code below successfully fades in one testimonial for 6 seconds, waits 3 seconds, and then fades it out and moves on to the next. Once it reaches the third testimonial it jumps back to the first. ...
2
votes
2answers
61 views
Python 3.x: Test if generator has elements remaining
When I use a generator in a for loop, it seems to "know", when there are no more elements yielded. Now, I have to use a generator WITHOUT a for loop, and use next() by hand, to get the next element. ...
2
votes
2answers
38 views
JQuery.Next() with not selector not working as expected
I am trying to setup a rotating panel, however I have three states: active, inactive, disabled.
I only want to rotate between active and inactive panels and skip over disabled panels. If there is no ...
2
votes
3answers
137 views
Insert new DIV between two DIVs that have the same class and are immediate siblings
Struggling with this one for a while now. My markup simplified:
<div class=row>
<div class="somediv"></div>
<div class="somediv2"></div>
<div ...
2
votes
10answers
165 views
Python String lists: How does one compare a string to the next string in a list?
I'm writing a small NLP algorithm and I need to do the following:
For every string x in the list ["this", "this", "and", "that"], if the string x and the next string are identical, i want to print ...
2
votes
4answers
218 views
Javascript (jQuery): next() gives me “li.next()” instead of “li”
Confusing title, huh? I tried to explain it as best as i could.
What i mean is, if i have a menu like this:
<ul>
<li> Home </li>
<li class="current"> Portfolio ...
2
votes
2answers
342 views
How to ScrollTo next & next & next… element
<div class="wrap">
<div class="layer">
<div class="post"></div>
<div class="post"></div>
<div class="post"></div>
<div ...
2
votes
3answers
749 views
Next business day of given date in PHP
Does anyone have a PHP code to calculate next business day of given date?
And also how does for example YYYY-MM-DD need to be converted to find out next business day.
Example:
For 03.04.2011 ...
2
votes
4answers
124 views
Jquery next() problem
I have this code:
<div class="window-compl">
<div class="window showincatalog showing">
<h2>Text1</h2>
</div>
<div class="window">
...
2
votes
4answers
504 views
jQuery find next element with class
I have a quite simple question, that ate me 4 hours and is not yet solved: How to find next span with specific class with jQuery?
I have the following html
<tr>
<td ...
2
votes
2answers
685 views
jQuery animate to next image in div
I've got some images within a div which i'm trying to when I click the next button animate to the next one in the div
In this div I also have my previous and next button which I obviously don't want ...
2
votes
1answer
458 views
Mysql Select Next & Prev row not order by id
I have a query ordered by NAME that return smt like this:
ID NAME
2121927 AAA
2123589 AAB
2121050 AAC
2463926 BBB ---> known ID
2120595 CCC
2122831 DDD
2493055 EEE
2123583 EEF
I need to ...
2
votes
1answer
127 views
Is there a way to read in files in TypedStream format
I have a file in the following format:
NeXT/Apple typedstream data, little endian, version 4, system 1000
Looking at it in a hex editor, it's clearly made up of NSsomething objects (NSArray, ...
2
votes
6answers
319 views
jquery problem using parent() and next() selectors
I have the following code:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Untitled Page</title>
<script class="jsbin" ...
2
votes
2answers
116 views
How to get an element with class after current one in JQuery?
Here is the sample html code:
<div id="current_element">Current element</div>
Many unknown tags...
<div class="target">This is target element</div>
Many other tags...
Note ...
2
votes
2answers
444 views
jQuery: how to find out when next() reaches the end, then go to the first item
I am displaying a series of elements using the next() function. Once I reach the end though, I want to go to the first element. Any ideas?
Here's the code:
//Prev / Next Click
...
2
votes
8answers
548 views
jQuery's next() on elements not next to each other
I have bits of horrible code I have to deal with
...
<div class="container">
...
<tr>
<td width="100" height="50">
<a class="swaps"><img ...
2
votes
3answers
796 views
jQuery - hide if previous element has a particular class
I would like to hide all class="csc-content" where previous sibling is a h4 class="faq".
UPDATE
Error: I think this is wrong... the previous sibling is not h4. But I hope you get the point that all ...
2
votes
3answers
990 views
Responding to “Back” and “Forward” buttons in WPF
I was planning to add support for the Back and Forward buttons, found on many keyboards, to my WPF app, but I'm struggling to get them to work.
I've tried using a standard KeyBinding to BrowserBack ...
2
votes
2answers
130 views
next instance of
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 list so;
...
2
votes
3answers
2k views
jQuery nextAll — Click on h-element toggles all p-elements until next h
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>
...
2
votes
4answers
3k 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 ...
1
vote
2answers
19 views
What's the easiest way to get the next sibling (wrapping) on a canvas in WPF?
Title says it all. We have a canvas that has a Children collection with an indexer. We have a reference to one of the children. We just want to get the next child in the list, and if we go past the ...
1
vote
2answers
35 views
Implementing jQuery .next() in a simple image slide show
jsFiddle is here: http://jsfiddle.net/qBQD4/
It's pretty simple really; I want the right arrow to move the images forwards, left arrow to move them backwards in a simple slideshow. I have multiple ...
1
vote
4answers
74 views
get next or live element with jQuery find
Alright, not sure if find() will be the correct method for this. I am using pretty photo and I am loading some inline content. Basically when pretty photo launches, it clones what is defined inline ...
1
vote
1answer
34 views
Allow Opera browser to understand what the next page is in a series of pages, so the user can do a keyboard shortcut to go to the next page
I forgot what the feature was called in the Opera Browser, but it allowed you to do a keyboard shortcut to go to the next or previous page in a series of pages on a website(This is not speaking of ...
1
vote
1answer
234 views
how to remove prev next button from virtual keyboard IOS
i have use a UIWebview in IOS 5. I try to set contenteditable="true" to make uiwebview editable.
The screenshoot of my app is similar to an image in this link How do you remove the Next and Prev ...
1
vote
3answers
75 views
PHP foreach print array with previous and next element
I have an array $data and I want to print it with foreach ($data as $detail). Thing is that I want inside foreach to print previous and next element. Something like this:
$data = ...