Last active
July 20, 2016 12:06
-
-
Save alex-boom/a7bc7f73f8b1378f20deb95753ee66b8 to your computer and use it in GitHub Desktop.
Ссылки
This file contains hidden or 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
// Отмена обычного поведения ссылки в html(убираем резкий переход по ссылке). | |
$("а").click(function(evt) { | |
evt.preventDefault (); | |
}); | |
//или так. return false указвается после всех действий в теле функции, т.е. в конце. | |
$("а").click(function() { | |
return false; | |
}); | |
// Добавить атрибут target="_blank", что бы все внешние ссылки открыавлись в новом окне | |
$("a[href^='http']").attr('target','_blank'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment