Guest User

Untitled

a guest
May 20th, 2018
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. <table id="example">
  2. <thead>
  3. <tr>
  4. <th>Subject</th>
  5. <th>By</th>
  6. <th>Location</th>
  7. </tr>
  8. </thead>
  9. <tbody>
  10. <tr>
  11. <td>1</td>
  12. <td>2</td>
  13. <td>3</td>
  14. </tr>
  15.  
  16. // if row index = 6 then show advt image by merging columns. I gather colspan is not supported.
  17.  
  18. <tr>
  19. <td colspan="3">show advt</td>
  20. <td style="display: none;"></td>
  21. </tr>
  22. </tbody>
  23. </table>
  24.  
  25. <td style="display: none;"></td>
  26.  
  27. $('tr:nth-child(6n)').after('<div>ad</div>');
Add Comment
Please, Sign In to add comment