Skip to content

Instantly share code, notes, and snippets.

View pimlinders's full-sized avatar
🏠
Working from home

Pim Linders pimlinders

🏠
Working from home
View GitHub Profile
@pimlinders
pimlinders / static-web-sites.js
Last active September 14, 2017 14:39
Copy existing and select static web sites.
/* Get site selection */
var sites = document.getElementById('id_sites').querySelectorAll('option');
selected_values = [];
for (var i=0; i<sites.length; i+=1) {
var site = sites[i];
if (site.selected === true) {
selected_values.push(site.value);
}
}
console.log('[' + selected_values.toString() + ']');