Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
  <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
  article, aside, figure, footer, header, hgroup, 
  menu, nav, section { display: block; }
  td { border: 1px gray; }
  th { font-weight: bold; }
</style>
</head>
<body>
  <table class="t1" style="border: solid 1px blue">
    <tr>
        <th>1</th>
        <th>2</th>
        <th>3</th>
        <th>4</th>
    </tr>
    <tr>
        <th>th</th>
        <td>td</td>
        <td>td</td>
        <td>td</td>
    </tr>    
    <tr>
        <th>th</th>
        <td>td</td>
        <td>td</td>
        <td>td</td>
    </tr>    
</table>
  
<table class="t1" style="border: solid 1px green">
    <tr>
        <th>th</th>
        <th>th</th>
        <th>th</th>
        <th>th</th>
    </tr>
    <tr>
        <td>td</td>
        <td>td</td>
        <td>td</td>
        <td>td</td>
    </tr>    
    <tr>
        <td>td</td>
        <td>td</td>
        <td>td</td>
        <td>td</td>
    </tr>    
</table>
  
  
    <table class="t2" style="border: solid 1px blue">
    <tr>
        <th>th</th>
        <th>th</th>
        <th>th</th>
        <th>th</th>
    </tr>
    <tr>
        <th>th</th>
        <td>td</td>
        <td>td</td>
        <td>td</td>
    </tr>    
    <tr>
        <th>th</th>
        <td>td</td>
        <td>td</td>
        <td>td</td>
    </tr>    
</table>
<table class="t2" style="border: solid 1px green">
    <tr>
        <th>th</th>
        <th>th</th>
        <th>th</th>
        <th>th</th>
    </tr>
    <tr>
        <td>td</td>
        <td>td</td>
        <td>td</td>
        <td>td</td>
    </tr>    
    <tr>
        <td>td</td>
        <td>td</td>
        <td>td</td>
        <td>td</td>
    </tr>    
</table>
</body>
</html>
 
$('.t1 tr :nth-child(3)').css('background-color', 'green');
$('.t2 tr:nth-child(2) td:nth-child(3)').css('background-color', 'yellow');
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers