Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function() {
- $('#home-view .tools-section a.know-more').click(function(){
- $('html, body').animate({
- scrollTop: $( $.attr(this, 'href') ).offset().top - 60
- }, 500);
- return false;
- });
- /* Height blocks equal
- @autor: rauljulian1996(at)gmail(dot)com
- */
- var _tools = $(".tools-section .col-md-4");
- var _height = 0, hAtual = 0 ;
- _tools.each(function(tool) {
- hAtual = parseFloat($(this).height());
- console.log("hAtual: " + hAtual);
- if(_height < hAtual) {
- _height = hAtual ;
- }
- });
- _tools.height( _height);
- });
Add Comment
Please, Sign In to add comment