Guest User

Untitled

a guest
May 25th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. <script>
  2. $(document).ready(function() {
  3. var book_info = "";
  4. var term = "200915";
  5.  
  6. $('.crn').each(function(index) {
  7. var crn = $(this).text();
  8.  
  9. $.getJSON("/proxy.php", { term: term, crn: crn }, function(data){
  10. book_info = data.TEXTBOOK_INFO;
  11. });
  12.  
  13. $(this).parent("td").next("td").append(book_info);
  14. });
  15. });
  16. </script>
Add Comment
Please, Sign In to add comment