Guest User

Untitled

a guest
Jun 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. document.getElementById('btn-submit').addEventListener('click', () => {
  2. for (let tr of document.querySelectorAll('#mytable tr')) {
  3. let src = tr.querySelector('.myclass2'),
  4. dst = tr.querySelector('.myclass1 input');
  5. if (dst)
  6. dst.value = src ? src.textContent : '';
  7. }
  8. });
  9.  
  10. `<input type="date" name="oplata_do" value="2018-05-04" />`
Add Comment
Please, Sign In to add comment