Advertisement
Guest User

Untitled

a guest
Jul 29th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. if (!$("tr").hasClass('hidebutton')) {
  2. var OriginalContent = $("#tabletask tr[data-id='" + parrentid + "'] > td:first-child").text();
  3. $("#tabletask tr[data-id='" + parrentid + "'] > td:first-child").html("<button class=hidebutton>-</button> " + OriginalContent + " ");
  4. }
  5.  
  6. if(!$("tr button").hasClass("hidebutton")){
  7. $("#tabletask tr[data-id='" + parrentid + "'] > td:first-child").html('<button class="hidebutton">-</button> ' + OriginalContent);
  8. }
  9.  
  10. html("<button class=hidebutton>-</button> " + OriginalContent + " ");
  11.  
  12. .html("<button class='hidebutton'>-</button> " + OriginalContent + " ");
  13.  
  14. $("tr").each(function( index, value ) {
  15. if (!$(this).hasClass('hidebutton')){
  16. console.log($(this,"td:first-child").text());
  17. }
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement