Guest User

Untitled

a guest
May 26th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. var tutajax2 = $.ajax("otobr.php")
  2. .done(function(data) {
  3. $(data).find("tr").each(function() {
  4. var rowValues = [];
  5. $(this).find("td").each(function(){
  6. rowValues.push($(this).text());
  7. });
  8. console.log(rowValues.join(" "));
  9. tab_rec = rowValues.join(" ");
  10. });
  11. })
  12. .fail(function() {
  13. console.log("ne ochen");
  14. });
Add Comment
Please, Sign In to add comment