Guest User

Untitled

a guest
Sep 25th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. for (var counterOfLoop in data)
  2. {
  3. var id = data[counterOfLoop]['_id']['$oid'];
  4. ....
  5. "<td class='col-sm-2'>"+
  6. '<select id="route_'+ id+'" name="route'+id+'" type="text" class="form-control validate-required" onchange="fetchAllStops(this.value,"'+id+'"")"> </select>'+
  7. "</td>"+
  8.  
  9. }
  10.  
  11. "<td class='col-sm-2'>" + '<select id="route_' + id + '" name="route' + id + '" type="text" class="form-control validate-required" onchange="fetchAllStops("'+this.value+'","' + id + '"")"> </select>' +
  12. "</td>"
Add Comment
Please, Sign In to add comment