사용자:Hsl0/연구소/2.js: 두 판 사이의 차이
imported>Hsl0 편집 요약 없음 |
imported>Hsl0 편집 요약 없음 |
||
1번째 줄: | 1번째 줄: | ||
/** [[틀:일방통행링크]]에서 사용하는 링크 리다이렉트 함수 | /** [[틀:일방통행링크]]에서 사용하는 링크 리다이렉트 함수 | ||
* class="OWLink-container" | * class="OWLink-container" | ||
* 작성자: [[사용자: | * 작성자: [[사용자:hsl0|hsl0]] | ||
**/ | **/ | ||
$(function useOWLink() { | $(function useOWLink() { |
2020년 12월 31일 (목) 00:29 판
/** [[틀:일방통행링크]]에서 사용하는 링크 리다이렉트 함수
* class="OWLink-container"
* 작성자: [[사용자:hsl0|hsl0]]
**/
$(function useOWLink() {
$('.OWLink-container a').each(function() {
var href = new URL(this.href);
if(location.host === href.host) $(this).click(function(event) {
event.preventDefault();
location.replace(event.currentTarget.href);
}).addClass('OWLink');
});
});