Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. $(".jqgrow td:not(:first-child)")
  2. .mouseenter(function(){
  3. $.doTimeout('cellhover', 1000, function(e){
  4. my_tooltip
  5. .css({opacity:0.85, display:"none"})
  6. .stop() // Added stop() to fix bug, flickering of tooltip
  7. .fadeIn(10);
  8. });
  9. });
  10.  
  11. $(".jqgrow td:not(:first-child) td:empty")
  12. $(".jqgrow td:empty td:not(:first-child)")
  13. $(".jqgrow td:not(:first-child, :empty)")
  14.  
  15. // Select td elements in .jqgrow that are neither :first-child nor :empty
  16. $(".jqgrow td:not(:first-child, :empty)")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement