Guest User

Untitled

a guest
Sep 18th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. var o = {
  2. categorias: document.querySelectorAll(".categorias-tmc"),
  3. productos: document.querySelectorAll("#productos-tmc div"),
  4. cat: null,
  5.  
  6. }
  7.  
  8. var m = {
  9.  
  10. inicio: function(){
  11. for(var i = 0; i < o.categorias.length;i++){
  12.  
  13. o.categorias[i].addEventListener("click", m.seleccion)
  14. }
  15. },
  16.  
  17. seleccion: function(e){
  18. o.cat = e.target.getAttribute("cat"),
  19. console.log(o.cat)
  20. }
  21.  
  22. }
  23.  
  24. m.inicio();
Add Comment
Please, Sign In to add comment