반응형
$("a[href$='.org']") 를 이용하면 href 마지막이 .org로 끝나는 모든 href element를 찾을 수 있다.
만약 찾아낸 element의 href를 지우고 싶다면
$("a[href$='.org']").removeAttr("href");
를 이용하면 href를 지울 수 있다.
https://www.w3schools.com/jquery/sel_attribute_end_value.asp
https://stackoverflow.com/questions/1688084/how-to-remove-href-with-jquery
반응형
'Basic > Jquery' 카테고리의 다른 글
a(...).on is not a function 에러 해결 (0) | 2023.02.27 |
---|---|
Tistory 메뉴에서 구분자 만들기 (0) | 2019.11.08 |
Jquery attr 메서드를 쓸 때 조심할 점 (0) | 2019.09.18 |
jquery를 이용한 slider (0) | 2018.08.21 |
Jquery를 이용한 show, hide, toggle (0) | 2018.08.16 |