Snippets Collections
   const sibling = el.previousElementSibling; // parent wrapper
    
      if (sibling) {
        const classList = sibling.getAttribute('class');
        if (classList !== null && classList !== undefined && classList !== '') {
          if (sibling.classList.contains(navLinkClass)) {
           	// do something
          }
        }
      }
cell.cellButton.tag = indexPath.row
            cell.cellButton.addTarget(self, action: #selector(yourFunc(sender:)), for: UIControl.Event.touchUpInside)
                                                            
@objc func yourFunc(sender: UIButton){
    let buttonTag = sender.tag
}
document.addEventListener("click", e => {
if(e.target.matches(".clase")||e.target.matches(`${".clase"} *`)) {
  
  ...
}
})

/* Otro */

  document.addEventListener("click", (e) => { 

        if(e.target.classList.contains("desplegable") || e.target.parentElement.classList.contains("desplegable")) {

            document.querySelector(".filtros-desplegables").classList.toggle("is-active");
        }
        
      })
  
star

Wed Oct 11 2023 05:36:53 GMT+0000 (Coordinated Universal Time)

#javascript #ignorewrapper #click
star

Mon Dec 05 2022 15:28:43 GMT+0000 (Coordinated Universal Time) https://github.com/0x29a/cli_template

#cli #click
star

Sun Oct 31 2021 19:12:46 GMT+0000 (Coordinated Universal Time)

#click

Save snippets that work with our extensions

Available in the Chrome Web Store Get Firefox Add-on Get VS Code extension