Tagged Questions
5
votes
2answers
857 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/
...
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 ...
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
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 = ...
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
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
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>
...
1
vote
4answers
89 views
Using next() x number of times with jQuery
What's an easy way to iterate x number of times using next() (applying the same function each time)?
I am working in Sharepoint and have limited control of the HTML; what I can do is find an element ...
1
vote
2answers
86 views
How to cycle through siblings using jQuery?
I have the folowing code:
html:
<div class="container">
<div class="selected">A</div>
<div>B</div>
<div>C</div>
<div>D</div>
...
1
vote
2answers
181 views
Nodejs and Connect “next” functionality
It seems that if I want to move to a "next" function in Nodejs (and possibly Javascript in general?) I cannot pass parameters to the next function.
Here is what I mean:
app.get('/webpage', ...
1
vote
4answers
245 views
Looping Through Images using JQuery
I am trying to use JQuery next() to add CSS to one image at a time highlighting it. When the user clicks a button it should highlight the next() image with a border. Instead though it is highlighting ...
0
votes
3answers
46 views
Javascript code to press CTRL+TAB?
since there's no way of moving to the next tab using javascript,
is there a code which presses CTRL + Tab so it'd move to the next tab?.
Thanks in advance.
0
votes
0answers
67 views
Displaying results in sets of 5 with a next button for friends.getAppUsers in Facebook
I have been searching for a way to display facebook api friends.getAppUsers in set of 5.
I am able to do this if i hard code it but I cant seem to find and comprehend a method to do this dynamically. ...
0
votes
5answers
143 views
Does JQuery or JavaScript have a next statement/function to skip to the next iteration of a loop?
I have this code, where I would like that next skips to next iteration.
$.each(result, function(key, value) {
if (value.type == "individuel") {
cform["IN"] = "checked";
} else if ...
0
votes
1answer
154 views
How can I select the next div using jQuery?
I am quite a noob when it comes to jQuery and I'm trying to select the next element using the next() selector but having a little trouble in getting it to work!
What I'm trying to do is to activate ...
0
votes
2answers
425 views
Goto Next Anchor Button
I have set up some anchors and a little menu up top. when I click a menu item, it will scroll to that anchor.
what I want to do is have a next arrow on the menu to determine the next anchor on my ...
0
votes
0answers
132 views
Neighbour images as function parameters
I'm working on a lightbox-type gallery and the next and previous image functions are the last step to the complete component.Here is some working code snippet about loading an image
...
0
votes
4answers
165 views
jQuery next() - selector
I have a few sets of javascript codes and divs just below them:
<script type='text/javascript'>
jQuery(document).ready(function(){
...
0
votes
0answers
37 views
how to know following page
Is there's a way to know, in javascript, if the page will change ?
During an event (ie a click) is there a way to know what is the coming page without checking element's href (if clicking on a link) ...