Guest User

Untitled

a guest
Nov 13th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. _bindShowLess = function () {
  2. var _showLess = _sectorPageStrengths.find('.view-all-sectors-btn.less');
  3.  
  4. _showLess.on('click', function () {
  5.  
  6. var sliders = [].slice.call(document.getElementsByClassName("sectorpage-strengths"));
  7.  
  8. sliders.forEach(function (element, index){
  9. element.addEventListener("click", function(){
  10. console.log("array" +index + "!");
  11. });
  12. });
  13.  
  14. $('html, body').animate({
  15. scrollTop: _sectorPageStrengths.offset().top
  16. }, 700);
  17. });
  18. };
Add Comment
Please, Sign In to add comment