This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Specify div(s) | |
| const fieldNames = ['.more-link', '#featured-posts a', '.page-link a']; | |
| // Select div(s) | |
| const selectFields = fieldNames.map((field) => document.querySelectorAll(field)); | |
| selectFields.forEach((e, i) => { | |
| if (selectFields[i].length > 0) { | |
| // Get links within a specificied div | |
| const linkArray = Array.prototype.slice.call(e); |