Is there a way to detect any buttons that aren’t linked yet or a list of unused anchors? This will be very useful to tidy up any unused items.
As for the anchors - I do not know.
But as for the buttons, here’s a short tutorial on how to do it:
Code:
$w.onReady(function () {
const buttons = $w('Button');
console.log(buttons);
buttons.forEach(button => {
if (button.link === '') {
console.log(button.label)
}
});
});
I meant a fast way like a complete table or something