add table row before or after a table row of known ID

Posted by Perpetualcoder on Stack Overflow See other posts from Stack Overflow or by Perpetualcoder
Published on 2010-12-23T01:47:32Z Indexed on 2010/12/23 1:54 UTC
Read the original article Hit count: 631

Filed under:
|
|

In a table like this:

<table>
<!-- Insert Row of bun here -->
  <tr id="meat">
   <td>Hamburger</td>
  </tr/>
<!-- Insert Row of bun here -->
</table>

function AddBefore(rowId){}
function AddAfter(rowId){}

I need to create methods without using jquery..i am familiar with append after and append before in jquery.. but i am stuck with using palin js.

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about html