Tagged Questions
0
votes
4answers
44 views
Getting table column index using jQuery
I have adequate knowledge about jQuery and its usage but today i got into a trouble of getting the column index of matching label inside th element of table using jQuery. I want to get the index of th ...
0
votes
0answers
38 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': ...
0
votes
1answer
44 views
How do I re-index filtered divs in jQuery
I have a filter function that uses div classes by finding the class and hiding everything else. I also have a function that dynamically adds a div, but it's not working correctly with the filter ...
1
vote
1answer
62 views
Can't get :visible to work with index()
This is my graphic design portfolio site and I'm having a bit of trouble with my filter. I've created it using jQuery and classes. When one clicks on a link it hides all the '.tags' that aren't it. ...
0
votes
0answers
21 views
Jquery indexing Iframe contents
I have this code which will alert index position of element:
var qq = $('li').index('*');
alert(qq);
The problem is that the li is in Iframe. I suppose I have to do something like:
var qq = ...
2
votes
1answer
73 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:
...
1
vote
2answers
38 views
Jquery index doesn't work for child nodes
I would like to index everything in document and then call it by its index. The HTML:
<ul>
<li id="foo">foo</li>
<li id="bar">bar</li>
</ul>
Alert to get ...
0
votes
3answers
35 views
Index everything and exclude certain div
I'm trying to index everything in document like this:
var index = $('body *').index(this);
So now I want to remove the text from all items:
$('body *').contents().filter(function() {
return ...
0
votes
0answers
35 views
Some active states of jquery-ui accordion is not working?
I have a web form that contains 4 checkboxes asking about potential product interests. Each box that is checked receives a value of 1, any not checked receives a value of 0. Once the form submits, ...
1
vote
2answers
22 views
jQuery targeting and moving specific elements one by one
I have an HTML structure like so:
<tr class="v65-productDisplay-row"></tr>
<tr class="v65-productDisplay-row PriceAndButton"></tr>
<tr class="v65-productDisplay-row ...
-1
votes
2answers
156 views
Jquery: Change class on different ul li section
Description: I have code such as follows. I have labeled them with their correct indexes. I understand that the first ul tag is index 0, the second is index 1. I understand that the li is index 0 - ...
0
votes
1answer
87 views
jQuery .is() for already clicked
I have a series of lists, when a list item is clicked the list is split in two and a paragraph element is inserted in between. This paragraph element is assigned a class based on the index of the list ...
0
votes
1answer
46 views
jQuery List Indexing
I have a series of divs all containing list elements. I'm trying to return the index of the item in the list locally inside the div. But it counts the list items in other divs and I'd like to avoid ...
3
votes
5answers
144 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 ...
0
votes
0answers
45 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
75 views
jquery highlight td if it's not the same as another td on the same row
What I need to do is add a class to the first column td if the data inside matches the data inside of the third column td on the same row.
http://jsfiddle.net/rUssu/
html table
<table ...
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 ...
1
vote
0answers
60 views
Set up a script to trigger WP's Search Unleashed Re-index feature (for cron)
Search Unleashed is supposed to automatically add new posts to its index every time someone creates a new post. However, this doesn't seem to happen for posts under any of our custom post types.
I ...
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
74 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
74 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
2answers
181 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
1answer
164 views
Using jquery how do I find which row # contains an input with a value in it?
I have a table that has multiple rows. I am trying to return the row # that contains an input which has a value in it. I understand what I'm doing wrong... my selector is only selecting 1 row, ...
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
81 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
4answers
97 views
jquery: how do I find index of child divs with the same class
Here's the problem; I have a div which contains child divs within itself and I can't seem to access the child divs. What I need is to find the index with .eq90 for each of the child divs.
Here's the ...
0
votes
1answer
88 views
jquery: How do I find all the class names and number of instances of a element
I have created a set of divs of different size that all reside within a parent. These divs have different class names depending on their size and content. What they share is another classname called ...
2
votes
1answer
120 views
finding index from sibling element onClick jquery
I have multiple divs with the same class name that dynamically populate a container.
<div class="container">
<div class="content cancel"><button ...
0
votes
2answers
407 views
get index of selected option with jQuery
I'm a little bit confused about how to get an index of a selected option from a html select item.
On this page there are described two methods. However, both are returning me always -1. Here is my ...
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 ...
1
vote
2answers
97 views
to .append with jQuery and get current index()
I have problem to get current index size when I add a div with jQuery
HTML:
<div>
<p>1</p>
</div>
<button>Add</button>
jQuery:
...
0
votes
5answers
67 views
Get the index of the element
I have a code into the textarea. Here it is http://clip2net.com/s/2tnj2
When i click to submit button, all this code put into the variable.
$('#fc-send2').live('click',function () {
var code = ...
1
vote
1answer
181 views
Get index of parent div from child divs
I have a few divs and inside them I have nested divs. I would like to be able to get the index of the parent div my child divs reside in. Ie: If I clicked "post5" I would get the index1 or If I ...
3
votes
2answers
85 views
jquery index within a parent class
I need a way to find the index number of one child element.
here is the CSS of it
<div class="parent">
<div class="son"></div>
<div class="son"></div>
...
2
votes
2answers
63 views
jquery .index()
the jquery index() seems not recognize one of the element, always say "cannot read property 'length' of undefined" here is my code.. mnumber is the one causing problems.i need number and mnumber to be ...
2
votes
1answer
69 views
jQuery total amount of elements in an array
Seems like a simple thing but I cant find anything on it!
var cookie = [1,2,3],
total = cookie.magicMethodThatICantFindThatTotalsTheElements();
total = 3
0
votes
5answers
208 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 ...
2
votes
1answer
82 views
jQuery index function
I think I need to use jQuery's index() function but I'm doing it all wrong! I have a bunch of table cells with images inside, and one of them will have a class called "current". How can I tell which ...
2
votes
1answer
415 views
JQuery Datatables row index not showing according page
I am using the Jquery datatables to build a table. I need a row index for every row that I have. But the row index reset to 1 when I switch to the next page.
I need the row index continues from the ...
2
votes
3answers
56 views
jQuery only returns index from first element when use tables
I'm working on a web platform that use a lot of tables to render on browser.
So I need to use the index() of some elements to provide an interaction to the users.
But as I commented above when I try ...
-1
votes
2answers
52 views
how to trigger click on corresponding index
Ok,
I have a div of anchors:
<div class="allTabs">
<a href="#">link 1a</a>
<a href="#">link 1b</a>
<a href="#">link 1c</a>
<a href="#">link ...
0
votes
1answer
205 views
How to create simple slider according to ul li index values?
I am trying to match two index values between slider big images and it's thumbs. When one the thumbs clicked, i am getting index() value of it and try to match with another list to show that image.
...
0
votes
2answers
87 views
Jquery returns index -1 always
This is my index code that I use to return the buttons parent div's index:
j('#optionform').index( j(this).parent() )
I'm trying to find out the DIV index of the button clicked, so I can remove the ...
2
votes
1answer
589 views
jQuery add class to object with .get() method
running into a weird thing and I'm not sure what's going on.
I've grabbed the index of a DOM element via .index(), found a matching element via .get() and I'm trying to add a class to it via ...
0
votes
2answers
272 views
Find Index div and load attr. iframe url
I have a menu list (ul/li) which I'm trying to match a certain set of div's. For example: if I would click in li number 3, the iframe nested in div 3 would have to 'show' and load a specific url:
...
1
vote
1answer
151 views
JQuery: Getting .index() of elements added with .append()
JQuery v1.7.2
I'm adding elements to the screen after the user makes a selection from a dropdown. I'm doing this w/ .append():
var html = '<li><input type="hidden" name="hidden_' + ID + '" ...
1
vote
4answers
117 views
jquery find image in array
hi I have an array of images
["img/wedgallery/1.jpg", "img/wedgallery/2.jpg", "img/wedgallery/3.jpg", "img/wedgallery/4.jpg", "img/wedgallery/5.jpg", "img/wedgallery/6.jpg"]
this is stored as a ...
4
votes
2answers
2k views
jQuery Cycle plugin- How to return the index number of the currently displayed slide?
I'm currently using Malsup's Cycle plugin . I am just wondering is it possible to have cycle plugin return the index number of the currently displayed slide??
I want to change the content of the ...



