Advertisement
enissay

Enissay

Nov 10th, 2014
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $x("//tr[count(td)>1]").each(function() {
  2.     console.log(
  3.         $(this).find("td:first-child").text() +
  4.         "\t\t\t" +
  5.         $(this).find("td:nth-child(2)").text()
  6.     );
  7. });
  8.  
  9. ERRORS
  10. ======
  11. Uncaught
  12. (anonymous function)
  13. InjectedScript._evaluateOn
  14. InjectedScript._evaluateAndWrap
  15. InjectedScript.evaluate
  16.  
  17. TypeError: undefined is not a function
  18. message: "undefined is not a function"
  19. stack: (...)
  20. get stack: function () { [native code] }
  21. set stack: function () { [native code] }
  22. __proto__: Error
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement