Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2019
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <table>
  2. <tr>
  3. <td class="nowrap" "bunch of inline stuff"></td>
  4. <td "bunch of inline stuff">
  5. </tr>
  6. </table>
  7.  
  8. //$('#main_content_wrapper table:first tbody tr td:nth-child(1)').attr('width','240').attr('id','ezweb_lhr').css('background','lime');
  9. //$("#main_content_wrapper table:first td:nth-child(1)").attr('width','240').attr('id','ezweb_lhr').css('background','lime');
  10. //$("#main_content_wrapper table:first tr:nth-child(1) td:nth-child(1)").attr('width','240').attr('id','ezweb_lhr').css('background','lime');
  11. //$("#main_content_wrapper table tr:nth-child(1) td:nth-child(2)").attr('width','680').attr('id','ezweb_content').css('padding-left','20px').css('background','red');
  12.  
  13. $("#main_content_wrapper table:first").find("td")
  14.  
  15. var nth_elem = $("#main_content_wrapper table:first").find("td")[n-1]
  16.  
  17. $("main_content_wrapper table:first").find("tr:first").find('td');
  18.  
  19. $("#main_content_wrapper table:first").find("tr:first").find('td')
  20. .attr({
  21. 'width': '240',
  22. 'id' : 'ezweb_1hr'
  23. }).css('background','lime');
  24.  
  25. $("#main_content_wrapper table:first tbody tr:first td[width='647']")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement