34grid - how to remove link and hover

I just started using 34grid and cannot get rid of the div related links. I removed the code that I thought was generating links:

$('.container > .row > div:first-child').click(function() {

    // select current cols and it complements
    var _doNotSelect = '.' + $(this).attr('class') + ', ' + '.' + $(this).attr('class') + 'c';

    // show / hide rows
    $('.container > .row > div').not(_doNotSelect).toggle();

});

      

but divs still behave like links on mouse hover (pointer changes to the side). I can use css to make it a pointer, but I want to understand why the hand appears.

I would be grateful for your help. Thanks to

+3


source to share





All Articles