thorpedosg

Untitled

Jul 24th, 2018
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $(document).ready(function(){
  2. $.ajax({
  3. type: "GET",
  4. url: "./quick/index",
  5. dataType: "text",
  6. success: function(text) {
  7. $(text.split('\n')).each( function(i,line) {
  8. if ( line.trim() != '' ) {
  9. $('#gems').append( $('<li>' + line + '</li>' ) );
  10. }
  11. } );
  12. }
  13. });
  14. });
Add Comment
Please, Sign In to add comment