Tagged Questions
0
votes
1answer
29 views
Javascript push array item to named index
I have a JSON array:
[{ id: 1, client: "Microsoft" },{ id: 2, client: "Microsoft"
},{ id: 3, client: "Apple" }]
and I'd like to group it by "client", but I'm having difficulty with ...
4
votes
2answers
49 views
Return jQuery object (instead of DOM) from jQuery array using index
I have a jQuery array of <span>s and I'd like to get just one of them as a jQuery object so that I can string additional methods on it. Something like $mySpans[2] (which returns a string), or ...
-2
votes
3answers
52 views
Access a PHP array element by using a JavaScript variable as index
The code looks like this:
PHP file
<?php
...
$arrayName = ['ArrayValue_0', ..., 'ArrayValue_n'];
...
php?>
JavaScript
$('.elementClass').each(function(index, id) {
$(id).html('<?php ...
0
votes
4answers
36 views
Remove part of a string before a certain position
I have a string I want to cut and remove the first part.
Something like 'abcded-cddndcasds--XYZ--jkajsjasasasasas'
I want to remove everything before position X.
So far I can find the position ...
1
vote
1answer
63 views
Python Index Error List of index out of range
I have a python code which send serial command to a device and get reply from it.
def control(command):
serialport= serial.Serial ("/dev/ttyAMA0", 9600, timeout=0.5)
...
0
votes
1answer
27 views
Attempting to Index through an Array of X & Y values for D3 Drag
Hi I am currently calling a set of json data using the built D3 request for Json. The current problem I am having is trying to index through my array of data within that request. At the moment I am ...
1
vote
3answers
30 views
How to access indexed id in javascript
I am having trouble in accessing an element to validate it.
For example, if I am generating a dynamic table from a database and I have a code that looks something like this:
i=0;
while($row as ...
0
votes
0answers
39 views
how do I open fancybox using the specific index of an image
I am using fancybox with the below code
$("a[rel=Fancy" + UserId + "].Items").fancybox({ 'autoscale': 'false',
'cyclic': true,
'transitionIn': 'elastic',
'transitionOut': ...
2
votes
1answer
77 views
Cannot seem to add two integers in javascript?
Im building John Conways game of life with HTML5 canvas.
It has a gameOfLife object which contains an array with all the cells and their states (dead/alive).
Here is the code that builds a cell:
...
0
votes
1answer
32 views
Dynamically create index in two dimensional array
Having some trouble with this script. It iterates through a two dimensional array and adds each corresponding index together. So basically arr[0][1] + arr[0][2] + arr[0][3] ... arr[1][1] + arr[1][2] + ...
0
votes
1answer
29 views
Error with my dojo ajax php request
Im trying to use a dojo ajax function to call a PHP file that then returns the contents of a DB table in JSON format.
My function:
var _getWeatherInfo = function(){
dojo.xhrget({
...
0
votes
1answer
64 views
ng-show for a specific element within ng-repeat
I can't seem to get my head around this little problem:
<ul ng-repeat="parent in parents">
<li>Mother: <i>{{parent.mother}}</i></li>
<li>Father: ...
0
votes
1answer
38 views
How to get an element index on a fixed set of elements in Javascript
I have a fixed set of elements (say 30) in a container. Now when an element is clicked I want to figure out its index in that container.
What I know I can do:
set clickhandlers on all the elements ...
1
vote
3answers
40 views
Array Index N.O. + Value
Hi I have a post here http://jsfiddle.net/7ztEf/9/ that explains what i want to achieve.
I will break it down, I need to fill a div bg based on the values of an array index, these are 4 random ...
-2
votes
2answers
39 views
JavaScript - indexOf with all charcters, not just first
is it possible to get an index of all of the strings that occur in another string instead of just the first one?
and if it is, how will i use the output?
3
votes
5answers
146 views
JSON - Display data according to the index of json
I'm trying to display particular json data in a form of Bullets. Each chapter data into <li>, each title into <p> and make those titles as a link. Finally, consider to the index of clicked ...
3
votes
2answers
79 views
Why does the jQuery .index() method only work for the first element in the collection, when a selector is specified?
I am trying to build up a table by adding values from textbox fields in the tfoot of the same table. The eventual goal is to be able to then inline edit previously added rows while still leaving the ...
1
vote
3answers
65 views
JavaScript: Have we always been able to index into a string like it's an array?
I've always thought that if you want to access the nth character in a string called str, then you have to do something like str.charAt(n). Today I was making a little dummy test page and by mistake, I ...
1
vote
3answers
50 views
Get the index of the group that matched in a regexp?
I have a regexp:
/(alpha)|(beta)|(gamma)/gi
Some text to match against:
Betamax. Digamma. Alphabet. Hebetation.
The matches are:
beta, gamma, alpha, beta
The values I am looking would be:
...
0
votes
0answers
46 views
jQuery: Finding the index of the parent relative to other parents with the same class
So regardless of what li I am hovering over, I need to store the index of the parent (the ul) in a variable. How can this her done?
Here is my markup:
<ul class="modelblock modeloverlay">
...
1
vote
2answers
76 views
If I Iterate Over an Objects Properties using JQuery $.each() is there an index?
a = {b:'bb',c:'cc',d:'dd'};
$.each(a, function(index){
// here 'index' is a string variable containing the property name, ie 'b', 'c' or 'd'.
}
I want the integer index of the property - is this ...
0
votes
1answer
55 views
Do java script or jquery has a function like inArraykey?
As far as I know jQuery has a function inArrary which is apply like the following
$.inArray(value, array); it return -1 if not in array
However, this function only apply to value and is not ...
2
votes
2answers
76 views
JavaScript insertAt position
Assuming I have a collection with a bunch of well ordered elements, what's the common method to insert another new child at it's abstract order-position?
Using a dom library ...
2
votes
3answers
76 views
Is it possible to store integers as keys in a javascript object?
I'm creating an index file in JSON, which I'm using as a sort-of-database index for a javascript application I'm working on.
My index will look like this:
{
"_id": "acomplex_indices.json",
...
0
votes
1answer
53 views
Finding the index of the current element I am scrolling in - Jquery
Suppose I have some fixed-height auto-scrolled-enabled divs with class name 'class'. I want to find the index of a the current 'class''s div I am scrolling in, like so :
var type = -1;
...
0
votes
3answers
78 views
How to get index value of an element while onmouseover?
I am trying to get an element's index number while onmouseover.
I can do this easily with jQuery but native javascript is bulletproof /:
Here is jsFiddle
var ele = ...
0
votes
2answers
196 views
Click event on dynamically generated list items using jquery
I have a list being dynamically generated and then I click on the item and pass the index() to another function.
The problem is that this list is being populated dynamically and my code does not ...
0
votes
0answers
65 views
insertRow or rowIndex dependent on drop down value
I am adding a user specified number of rows to a parent table from a dialog iframe. The table has father rows (categories for example colors, numbers, and letters) with and son rows (blue, 45, abc). ...
0
votes
1answer
35 views
How to find index deep in javascript array and return other part of array?
I want to return rj: Object below, and I have an index key to match, kid: 1. What's the best/fastest way of doing considerg the main Object can contain > 10k items?
Object
coord: MM.Coordinate
...
-2
votes
2answers
58 views
how to set value of a parameter to the index value of a loop javascript [closed]
I have an object constructor function that creates a box with these parameters.
function Box (id, name, color, number, coordinates) {
this.id = id;
this.name = name;
this.color = color;
...
0
votes
3answers
58 views
How to properly maintain the index in a JQuery Counter?
So let's say I have five divs. I am trying to show the first 3 divs and then showing a new div and removing a div on a set interval.
Here's my HTML code:
<div class="speaker">One</div>
...
1
vote
2answers
83 views
Jquery's index() function returns -1 instead of clicked list items position in his parent
Every time i try to use this once my list item is clicked, it returns -1.
Can someone enlighten me? I'd appreciate it :/ Thank you. Here is what i've been doing, need to create an image slider with ...
0
votes
1answer
90 views
use querySelectorAll to create a loop for newly created elements
What I'm trying to do is use the querySelectorAll() function to create a loop where I can target each new <li/> element that I've created using the getInput() function that I created (which ...
0
votes
0answers
82 views
Search Engine for Custom, “Big” Data?
Clarification: I am aware that only the Google Search Appliance can truly integrate with an search a database.
I have built a web application which allows students to sell and purchase textbooks ...
-1
votes
2answers
72 views
Javascript getting linked properly [duplicate]
Possible Duplicate:
Is it possible to get element’s numerical index in its parent node without looping?
jQuery .index() in javascript
Okay so I have this code:
<div id="wrapper">
...
-3
votes
3answers
59 views
Can i do this on .htaccess? [closed]
I'm wondering if i can make a <script> on .htaccess to work on all pages rather then doing them one by one?
This is the script I wanna put to show up on all Pages, It's .js that will
show ...
0
votes
4answers
64 views
Getting a nth element from a string
How can I get a certain nth element from a string. Like if I want to get every 3rd element from the word GOOGLE how can i do that. SO far i've done this but i dont know what to type after the If
...
0
votes
4answers
70 views
How can I obtain substrings from a string in javascript?
I have a string that looks like this:
var stringOriginal = "72157632110713449SomeDynamicText";
I want to separate this string into two substrings:
One substring is the first 17 digits
One ...
0
votes
1answer
79 views
Get the index of the ul in a carousel
I have a carousel with different lists. And i have a button next. When i click on the button, the carousel move 200 pixels to left. Than you can see the other images. But i have a problem with this ...
0
votes
3answers
71 views
Redirect to other URL if no string present [JAVASCRIPT]
In my php page there is error of "Undefined Index type". But if the same URL is opened with string e.g. mypage.php?type=abc then this error is not shown!
I want to redirect users without string i.e. ...
4
votes
3answers
283 views
How to create an index for a table in indexedDB using JayData
We have been trying out JayData as the layer of abstraction to multiple data providers in an HTML5 web app that targets multiple platforms and devices.
We also have been using the Linq2IndexedDB ...
1
vote
1answer
81 views
How can I subtract 1 from the previous index number in JavaScript
How can I subtract 1 (or any number) from the index without decrementing it (without it's value changing in the variable) ?
Here's a snippet of my code:
if (i > 0 & areaImages[i].id == ...
1
vote
1answer
60 views
returning all comments by a specific user without other document fields using mongoose
var mongoose = require('mongoose');
// defines the database schema for this object
var schema = mongoose.Schema({
projectName : String,
authorName : String
comment : [{
id : String, ...
0
votes
1answer
415 views
using ensureIndex in mongodb schema using mongoose
var mongoose = require('mongoose');
// defines the database schema for this object
var schema = mongoose.Schema({
projectName : String,
authorName : String
comment : [{
id : String, ...
0
votes
0answers
113 views
OnClick set ComboBox Element Selected
I have a combobox in a form. After a button click i need to set this element as selected.
I've searched but i haven't found any.
I hope you can help me.
Bye
0
votes
2answers
68 views
Array Not renumbering
I have a situation where I have to delete a obj from an array vs .splice. What is happening is that the array is not renumbering correctly, as you can see below.
To get rid of the undefined ...
0
votes
5answers
218 views
example jquery get index/position of sibling
Let's say I have the following html
<ul>
<li id="a">a</li>
<li id="b">b</li>
<li id="c">c</li>
</ul>
<ul>
<li id="d">d</li>
<li ...
0
votes
1answer
157 views
Javascript increment index on event
I am trying to figure out a way to increment an index of an array based on an event (such as left mouse click over a hit area). The code below sets everything to zero and briefly changes the ...
0
votes
2answers
47 views
Javascript: indexing set of objects for searching by two properties
what datastructure / algorithm should I use for this?
I have a large number of points on a cartesian grid, locations specified by (x, y). I want to have a fast search, returning the set of points ...
0
votes
2answers
72 views
Storing the index of a for loop in javascript
I'm developing an android app with phonegap. I'm making an HTML table with some that with a for loop from localStorage. I need, for each row, to store the index i of the for to use it for retrieving ...






