Last active
March 16, 2021 13:29
-
-
Save IlanVivanco/51f71926f09fd5a058f00a70f3f8960d to your computer and use it in GitHub Desktop.
Get certain data from element page
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
let data = []; | |
$('[id^=form_19]').each((i, e) => { | |
let elm = $(e).find('> form'); | |
data.push(elm.data('formId')) | |
}); | |
copy(data); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment