Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var output = '';
  2. jQuery('.ui-tabs-nav.kc_clearfix li').each(function () {
  3.     jQuery(this).click();
  4.     var section = jQuery(this);
  5.     var content = jQuery('.ui-tabs-body-active.kc-section-active');
  6.     var subSections = content.find('.kc_accordion_section');
  7.     var SECTION = section.text().replace(/(\r\n\t|\n|\r\t)/gm,"");
  8.     subSections.each(function () {
  9.         var subSection = jQuery(this);
  10.         var SUB_SECTION_TITLE = subSection.find('h3 a').text().replace(/(\r\n\t|\n|\r\t)/gm,"").trim();
  11.         var CONTENT = subSection.find('.kc-panel-body').text().replace(/(\r\n\t|\n|\r\t)/gm,"").trim();
  12.         output += '"' + SECTION + '","' + SUB_SECTION_TITLE  + '","' + CONTENT + '"\n';
  13.     })
  14. })
  15. console.log(output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement