Guest User

Untitled

a guest
Apr 30th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. $(document).ready(function(){
  2. var rad=document.getElementsByName('mtrx_sel');
  3. for (var i=0;i<rad.length; i++) {
  4. if (rad[i].checked) {
  5. alert('Выбран '+i+' radiobutton');
  6. }
  7. }
  8.  
  9. });
  10.  
  11. var controls = document.querySelector('.add_mtrx');
  12. controls.addEventListener('click', handler);
  13.  
  14. function handler(e) {
  15. var nodeName = e.target.nodeName;
  16.  
  17. if (nodeName == 'BUTTON' || nodeName == 'INPUT') {
  18. console.log("Кликнули на ", e.target);
  19. }
  20.  
  21. }
Add Comment
Please, Sign In to add comment