mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-13 23:41:00 +00:00
14 lines
342 B
JavaScript
14 lines
342 B
JavaScript
|
window.onload = function(evt) {
|
||
|
var form = document.getElementById('form');
|
||
|
form.addEventListener('submit', function () {
|
||
|
for (var input of form.getElementsByTagName('input')) {
|
||
|
if (input.name === '') {
|
||
|
input.name = input.id
|
||
|
}
|
||
|
if (input.name && !input.value) {
|
||
|
input.name = '';
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
}
|