Skip to content

Instantly share code, notes, and snippets.

@transfluxus
Last active June 14, 2024 08:21
Show Gist options
  • Save transfluxus/7dcc9e39b5941729c2f75c8dbb292bfa to your computer and use it in GitHub Desktop.
Save transfluxus/7dcc9e39b5941729c2f75c8dbb292bfa to your computer and use it in GitHub Desktop.
var personSelector = "span[data-cvoc-protocol='localcontexts']";
var projectInputSelector = "input[data-cvoc-protocol='localcontexts']";
$(document).ready(function() {
// expandPeople();
// updateProjectInputs();
helloWorld();
});
function helloWorld() {
$(projectInputSelector).each(function() {
var projectInput = this;
console.log(projectInput)
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment