Last active
June 14, 2024 08:21
-
-
Save transfluxus/7dcc9e39b5941729c2f75c8dbb292bfa to your computer and use it in GitHub Desktop.
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
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