Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
3answers
2k views

Select every Nth element in CSS

Is it possible to select, say, every fourth element in a set of elements? Ex: I have 16 <div> elements... I could write something like. div:nth-child(4), div:nth-child(8), div:nth-child(12), ...
7
votes
1answer
753 views

Wrap every 3 divs in a div

Is it possible to use nth-child selectors to wrap 3 divs using .wrapAll. I can't seem to work out the correct equation. so... <div> <div></div> ...
6
votes
2answers
105 views

Selecting a class and first 3 of the rest; nth-child and nth-of-type useless

I have a DOM element (#installations) with a number of children, only one of them has a class .selected. I need to select this class and the first 3 of the rest (:not(.selected)) and show them - the ...
4
votes
2answers
29 views

Using nth-child to style item 4 and onwards

I have a list item where I'd like the 4th item and onwards to have a different background-color. I've tried the following: li:nth-child(4) { background-color:blue; } This styles only the 4th item. ...
4
votes
2answers
354 views

Restrict :nth-child results to visible elements

In jQuery, I want to add a class to all visible elements that are the 5th child or greater, and another class to each element that isn't a 4th child. Previously, I was doing this: $overlay.find('> ...
4
votes
1answer
770 views

jQuery nth-child add html after

I have a simple unordered list with 16 list items. I want to add a new list item after every fourth existing list item using jQuery How would I do that? Code below: <ul> <li>some ...
3
votes
1answer
94 views

Combining :not selectors

I'm trying to select all tr elements inside a table, except the third and fourth. I managed to do so by using: #table tr:not(:nth-child(3)):not(:nth-child(4)) I'd like to combine those selectors ...
3
votes
1answer
107 views

Css coloring table problem

I've been trying to make a colored table with even rows a different color than the odd ones. The only problem I have is that I have to be able to do it even with hidden rows, because if for instance ...
3
votes
2answers
83 views

CSS nth-child 1-6, 7-12, etc

I'm attempting at styling children items as follows 1,7,13,etc 2,8,14,etc 3,9,15,etc 4,10,16,etc 5,11,17,etc 6,12,18,etc What nth-child syntax can I use to achieve this?
3
votes
2answers
616 views

CSS3 :nth-child(odd) with a selector

Is there a way to select every odd element that matches a selector? I want to select every odd table row, but within a subset of the rows: table.myClass tr.row:nth-child(odd) { ... } But ...
3
votes
2answers
2k views

tr:nth-child(even) help. how to apply to one class?

im not very good with css and i need some help. i have a table where i want every other row to be gray and the alternating rows to be white. but i only want it to happen on one particular table. i ...
2
votes
2answers
90 views

CSS Animations with delay for each child element

I am trying to create a cascading effect by applying an animation to each child element. I was wondering if there is a better way to do it than this: .myClass img:nth-child(1){ -webkit-animation: ...
2
votes
1answer
34 views

Simple jQuery nth-child query - animations not working

I won't post my whole script because it's most likely irrelevant and will save wasting time. Why does the following code work: if (rand === 0) { $('#idOfElementInsideContainer') ...
2
votes
2answers
117 views

Looking for faster or better method to select the nth child of an XML node using jquery

Here is my code: var CDs=$(xml).find("CDs"); var NthChild = $(CDs).find("CD:nth-child(index)"); // nth-child 0th element starts at 1 I'm using the find method here; I have to specify the child node ...
2
votes
3answers
49 views

A question on nth CSS

I have 12 divs. I need to select the ones marked THIS. I was thinking some sort of nth child magic? Thanks! ie. <div class="feature"></div> <div class="feature"></div> ...
2
votes
2answers
39 views

How do I target these boxes? (image attached)

I am trying to target the boxes with the white dots in them. Every black box in this image is a blog post including the larger one on top. Initially, I thought of using nth-child but honestly am not ...
2
votes
2answers
658 views

CSS3 nth-child doesnt work Chrome 9

hey all, i have this code: <div class="sidebox"> <h3>Course Summary</h3> <div class="block"> <h4>Course ID</h4> ...
2
votes
2answers
377 views

Remove right margin on every fourth VISIBLE element using jQuery?

I have successfully used the jQuery :nth-child() selector to remove the right margin from every fourth element in a long list of div's. It looks like this: ...
2
votes
6answers
146 views

having trouble selecting an element's child with jQuery

I have some nested elements as such: <div id="knownID"> <div class="knownClass"> <span> <nobr> <span class="knownClass2"> <span> ... ...
2
votes
3answers
377 views

Specify multiple columns with nth-child()

I'm using nth-child in my jquery selector to identify columns to modify. I have 5 columns (1-5) and I want to modify only 2,3, and 4. Is there a way to do this with nth-child? Something like: ...
2
votes
1answer
91 views

How do i select the 1st and then every 4th row in a html-table with nth-child()-selector?

Ok, math isn't my strong side, I admit it. All I want to do is to select the first, 5th, 9th, 13th, 17th etc row in a html-table. Can anybody with better math-skills point me in the right directionor ...
2
votes
2answers
925 views

JQuery nth-child not working properly

I am using JQuery's nth-child selector to alter the margin on every 3rd div with a class of photo_post_thumbnail, but it alters it every 2nd div? Can anyone spot what I am doing wrong? Site ...
1
vote
1answer
42 views

How to make this jquery arranger work?

My dilema is this: i have a truck load of photos to insert in a huge table but it`s easier for me to spend a little time on jquery. I want to insert these photos in divs and a jquery script to make ...
1
vote
3answers
37 views

Unable to use float with nth-child selector to get 2 of 3 anchors to the right of my page

I have a html page where I have 3 anchors in an ordered list. the last two anchors need to be at the right of the page. I understand the better way to do this involves using nth-child selectors. I ...
1
vote
2answers
72 views

Adding </ul><ul> after every 5th <li> with jQuery

I have a list and I need to add </ul><ul class="list"> after every 5th li so the list looks like this <ul> <li><a>Test Page</a></li> ...
1
vote
2answers
102 views

Selecting even rows of specific css class

I'm trying to select the even rows of a table of a certain class. So the table looks like this: Absolute row 1 -- virtual row 1 of class a Absolute row 2 -- virtual row 2 of class a (should be ...
1
vote
3answers
217 views

Make css nth-child() only affect visible

Is there a way to only affect visible elements with this css? table.grid tr.alt:nth-child(odd) { background:#ebeff4; } table.grid tr.alt:nth-child(even) { background:#ffffff; } If i use a ...
1
vote
2answers
66 views

How do I choose the last 2 items in a list with css nth-child?

Is it possible? If not, is there a way to do it with jQuery?
1
vote
4answers
785 views

jQuery nth-child selector

Got a small confusing issue with jQuery and selecting/styling a column in a table. The following code works: $(function() { $("table").delegate('th.selcol','click', function(e) { ...
1
vote
2answers
58 views

CSS selector for nth in a series of immediately adjacent tags

I'm trying to implement a sort of zebra striping, but I want to constrain the eligible tags to those that are immediately adjacent to each other. For example <span class="match">a</span> ...
1
vote
3answers
144 views

nth: child / of-type does not seem to work on my site

I thought I has this nth-child or nth-of-type stuff down, but somehow it does not seem to work on my site. I have http://www.dateworld.co.za/ and need the 3rd tab to be a red background, but somehow ...
1
vote
1answer
191 views

tiling images every nth child + something?

I have this code http://underwaterpistol.co.uk/snaps-old.html I have a random number of images, and what I want to do is, every 1,2,3,4 image put in a div "box", in "big-box" I want every 5th image + ...
1
vote
2answers
260 views

nth-child doesn't respond to class

Is it possible to get the nth-child pseudo-selector to work with a specific class? See this example: http://jsfiddle.net/fZGvH/ I want to have the second DIV.red turn red, but it doesn't apply the ...
1
vote
3answers
278 views

nth-child(even) always selecting dd, never dt (even and odd lines in dl)

I'm trying to give a table appearance to a definition list and want to have the even lines colored differently from the odd ones with the help of some css3 selectors. #specs dt:nth-child(even), ...
1
vote
1answer
368 views

CSS nth-child - get 1st, 2nd, 4th and 5th children at once?

With CSS3 I know I can use the nth-child(an + b) selector. I have a table with 5 rows and I would like to select the 1st, 2nd, 4th and 5th rows with one statement. Is this possible or do I have to ...
1
vote
3answers
223 views

How do I select every nth of a specific child element in jQuery?

I have this markup: <div id="container"> <h1>Heading</h1> <p>Some text</p> <div class="foo">Some stuff</div> <div class="foo">Some ...
1
vote
3answers
69 views

JQuery to add divs to list of images

Hey I have a list of images that I need to wrap with divs so that every three images is in a new div. The first div has to start at the beginning and continue for the next three images before closing ...
1
vote
3answers
753 views

jquery - variable nth-child?

Hey. I want to pass a variable as an argument into an nth-child selector. This doesn't work: var position = 5; $("#daddy > div:nth-child(position)").animate({ opacity: 0.01, }, 500);​ Is it ...
1
vote
2answers
132 views

Jquery Nth-Child question

How, using Nth-Child could I add a class to every red box? I have tried using: $('#mainnav li ul li:nth-child(3n)').addClass('yes'); Markup: <ul> <li><a ...
1
vote
1answer
509 views

Use CSS3 nth-child to alternate the float of images within DIV tags

Basically, what I'm trying to create is a page of div tags, each has an image inside them and I'm trying to use CSS3's nth-child to alternate the float of that specific image. But for the life of me, ...
1
vote
2answers
399 views

Debugging nth-child selector

I have the following selectors: .progress:nth-child(3n+1) { background: teal; } .progress:nth-child(3n+2) { background: red; } .progress:nth-child(3n+3) { background: blue; } However ...
1
vote
2answers
2k views

Finding nth-child of siblings via jQuery

Let's say I have two tables that look like this: TH TH TH TH TD TD TD TD TD TD TD TD and TH TH TH TH TH TD TD TD TH TD TD TD I'd like to select ...
0
votes
1answer
41 views

Jquery if else statement not working in Google Chrome or safari

Trying to get a overlay to pop up when I select certain icons. Problems: 1.) This works great in FF but not anywhere else. It works in chrome sometimes when I am inspecting the element. 2.) There ...
0
votes
3answers
85 views

jQuery: nth-child selector not working in ie7

So I've got a grid of divs, not all equal heights and I need them all to line up properly. I've used the nth-child jQuery selector (see below) to select the first div of each row and apply a ...
0
votes
3answers
48 views

Selecting previous anchor tag and adding a class to it with jQuery

Basically I've got two anchor tags separated by a div. <a class="foo"></a> <div class="count">0</a> <a class="bar"></a> and I'm doing something like this: ...
0
votes
1answer
41 views

Jquery: select.children[index] faster than nth-child selector?

In jquery, say I have an html selector select. Which is faster to get the ith element from the selector? If one is faster, how much faster? By a little or a lot? select.children[i] Or ...
0
votes
4answers
84 views

How to add nth-item classes with jQuery

http://jsfiddle.net/JamesKyle/y7hBQ/ I'm making a simple jquery counting function that adds the following classes: First & Last Even & Odd nth-item-# (counts in order) ...
0
votes
2answers
21 views

Issue applying nth-child to a single class.

First, thanks so much for your time in advance. I work for a higher ed institution in Philadelphia. We're trying to utilize the nth-child pseudoclass to make every other row in our tables gray. The ...
0
votes
2answers
47 views

How to stop colgroup styles being overwritten by tr styles ? - CSS3

Hi guys I have a table like that? <table> <colgroup> <col class="selected"> <col> </colgroup> <tbody> <tr> ...
0
votes
2answers
94 views

using range for nth child selector - cleaning up some code

I've managed to simulate a slideshow nested inside tabs - where the next button on the last slide in a tab can take you through to the next tab. I've done it using nth-child selectors - however ive ...

1 2