Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
  <title></title>
  </head>
  <body>
  <button onclick='changeEle()'>Change</button>
    <table id="table">
      <tr>
        <td>Hi</td>
        <td>See you</td>
      </tr>
     </table>
  </body>
 
 function changeEle(){
    var t = document.getElementById('table');
    var row = t.getElementsByTagName("td")[0];
    row.className='hidden'; 
} 
Output 300px

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

Dismiss x
public
Bin info
mohamedriaspro
0viewers