Advertisement
Guest User

Untitled

a guest
Dec 9th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. function getInfo() {
  2.  
  3. var infoString = "";
  4.  
  5. $('.carousel-item').each(function() {
  6. infoString += $(this).find('.card-title').html() + "%";
  7. infoString += $(this).find('.green-text').html() + "%";
  8. $(this).find('p').each(function() {
  9. infoString += $(this).html() + "%";
  10. });
  11. infoString += "%";
  12. });
  13.  
  14. return infoString;
  15.  
  16. }
  17. console.log(getInfo());
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement