This file contains 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
/* | |
Функция для одновременной подсветки ссылок с одинаковым href, | |
на вход принимает: | |
1) selector — джеквери-селектор ссылок, чтобы | |
была возможность включить дублирующую подсветку в определённом фрагменте; | |
2) hoverClass — какой класс добавить по ховеру и псевдо-ховеру. | |
Инициализация для всего документа: | |
doubleHover('a', 'hover'); |
This file contains 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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=UTF-8"> | |
<title> - jsFiddle demo</title> | |
<script type='text/javascript' src='lazyload.js'></script> | |
<style type='text/css'> |