touch zamiast hover


$('a').on('click touchend', function(e) {
    var el = $(this);
    var link = el.attr('href');
    window.location = link;
});

$(document).ready(function() {
    $('.hover').bind('touchstart touchend', function(e) {
        e.preventDefault();
        $(this).toggleClass('hover_effect');
    });
});

Hope this helps and happy coding :)

Zobacz jeszcze

Contact form 7

Kody przydatne do użycia w mailu formularza: tytuł strony na jakiej znajduje się formularz - link do głównej strony - link do strony z jakiej został wysłany formularz -...

zatrzymanie stanu animacji

aby zatrzymać stan animowanego elementu można skorzystać...