Данный код применяет css стиль для всех ссылок ссылающихся на текущую страницу.
1
2
3
4
5
6
7
8
9
| <script type="text/javascript">
jQuery(document).ready(function($){
// Get current url
// Select an a element that has the matching href and apply a class of 'active'. Also prepend a - to the content of the link
var url = window.location;
$('a[href="' url '"]').addClass('active');
$('a[href="' url '"]').prepend('// ');
});
</script> |
|