Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <table cellpadding="0" cellspacing="0" width="100%">
  2. <tr>
  3. <td colspan="2"><h1>Activity Packs</h1></td>
  4. </tr>
  5. <tr>
  6. <td colspan="2"><P>Test test Test test Test testTest test Test test Test test Test test Test test Test test Test test Test test Test test Test test Test test Test test. Link: <a href="/products">I am a link</a></p></td>
  7. </tr>
  8.  
  9. $('table h1').closest('tr').next().find('a').on('click', function(e) {
  10. e.preventDefault();
  11. alert($(this).text());
  12. });
  13.  
  14. $('table h1').closest('tr').next().on('click', 'a', function(e) {
  15. ...
  16. });
  17.  
  18. $('table tr td').each(function(){
  19. if($(this).find('h1')[0] != undefined){
  20. $($(this).find('h1')[0]).after('<a href="#">abc</a>');
  21. }
  22. })
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement