Guest User

Untitled

a guest
Feb 17th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. for (let i = 0; i < rowscount; i++){
  2. $.getJSON(
  3. "https://eutils.ncbi.nlm.nih.gov/entrez/eutils/esearch.fcgi?db=pubmed&retmode=json&retmax=500&term=" +
  4. terms,
  5. function (data) {
  6. var pmids = data.esearchresult.idlist;
  7. var pmidlist = pmids.join();
  8. pmid_List.push(pmidlist);
  9. if (i == rowscount - 1) {
  10. // call the related function
  11. }
  12. });
  13. }
Add Comment
Please, Sign In to add comment