Skip to content

Instantly share code, notes, and snippets.

@IlanVivanco
Last active March 16, 2021 13:29
Show Gist options
  • Save IlanVivanco/51f71926f09fd5a058f00a70f3f8960d to your computer and use it in GitHub Desktop.
Save IlanVivanco/51f71926f09fd5a058f00a70f3f8960d to your computer and use it in GitHub Desktop.
Get certain data from element page
‎‎​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