Сообщение от danik.js
|
Наверное такое что твой код попросту не будет работать? И он вообще почти ни на одном сайте не будет работать. Или ты не считаешь это проблемой?
|
<body>
<style>
.sushi-active {
color:red;
}
</style>
<a href="http://lookatcode.com/showhtml">Active link</a>
<script type='text/javascript' src='http://code.jquery.com/jquery-1.9.1.js'></script>
<script>
jQuery(function ($) {
console.log( document.location.href );
$("a[href='" + document.location.href + "']").addClass('sushi-active');
});
</script>
</body>