Greasy Fork is available in English.

Tartışmalar » Oluşturma İstekleri

How to get this info

§
Gönderildi: 08.03.2022

Hello! I want to search on a set number of items for it's data-tooltip information.

I don't know how to programme on this langage, so I'm trying to fuse some scripts.

This is the way I get the info whem it's simple text/button:
variable.textContent.includes('Hello world')

But how could I do the same to get that?

§
Gönderildi: 09.03.2022
Düzenlendi: 09.03.2022
var buttons = document.querySelectorAll('button[data-tooltip]'); // query all buttons that contains 'data-tooltip' attribute
// var button = document.querySelector('button[data-tooltip="BLUE"]'); // query a button which has attribute data-tooltip="BLUE"
for (var i in buttons) {
    var button = buttons[i];
    console.log(button.getAttribute('data-tooltip'));
    concole.log(button.dataset.tooltip); // this work only for attribute which start with 'data-'
}
§
Gönderildi: 11.03.2022
Düzenlendi: 11.03.2022

Awesome! Thank you very much <3

Cevap paylaş

Yanıt göndermek için oturum açın.