Last active
October 19, 2018 11:40
-
-
Save ayazzali/9e6b553b40a630c01939dc5a7b87b7a9 to your computer and use it in GitHub Desktop.
только начало
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var d = document; | |
var l=console.log; | |
/** foreach with adding event to each element **/ | |
var fe=(arr,func=(e)=>console.log(e),eventName='onclick')=>{ | |
for(var z = 0; z < arr.length; z++) { | |
var elem = arr[z]; | |
elem[eventName]=()=>func(elem) | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
надеюсь кто то сделал уже удобную лёгкую либу чтоб писать на чистом js.
Конец.