abdulkrm

Auto Numbering Rank Math FAQ in HTML Headings

Jun 15th, 2023
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. window.onload = function() {
  2. const faqBlock = document.querySelector('#rank-math-faq');
  3. if (!faqBlock) return;
  4.  
  5. const faqItems = faqBlock.querySelectorAll('.rank-math-list-item');
  6. faqItems.forEach((item, index) => {
  7. const question = item.querySelector('.rank-math-question');
  8. question.innerText = (index + 1) + '. ' + question.innerText;
  9. });
  10. };
Advertisement
Add Comment
Please, Sign In to add comment