aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/api/htmlhyperlinkelementutils/href/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'files/ko/web/api/htmlhyperlinkelementutils/href/index.html')
-rw-r--r--files/ko/web/api/htmlhyperlinkelementutils/href/index.html51
1 files changed, 0 insertions, 51 deletions
diff --git a/files/ko/web/api/htmlhyperlinkelementutils/href/index.html b/files/ko/web/api/htmlhyperlinkelementutils/href/index.html
deleted file mode 100644
index ba2dbea4d5..0000000000
--- a/files/ko/web/api/htmlhyperlinkelementutils/href/index.html
+++ /dev/null
@@ -1,51 +0,0 @@
----
-title: HTMLHyperlinkElementUtils.href
-slug: Web/API/HTMLHyperlinkElementUtils/href
-tags:
- - API
- - Experimental
- - HTMLHyperlinkElementUtils
- - Location
- - Property
- - Reference
-translation_of: Web/API/HTMLHyperlinkElementUtils/href
----
-<div>{{ApiRef("URL API")}}</div>
-
-<p><strong><code>HTMLHyperlinkElementUtils.href</code></strong> 속성은 온전한 URL을 값으로 가지는 {{domxref("USVString")}}입니다.</p>
-
-<h2 id="예제">예제</h2>
-
-<pre class="brush: js">// Lets imagine an &lt;a id="myAnchor" href="https://developer.mozilla.org/en-US/HTMLHyperlinkElementUtils/href"&gt; element is in the document
-var anchor = document.getElementById("myAnchor");
-var result = anchor.href; // Returns: 'https://developer.mozilla.org/en-US/HTMLHyperlinkElementUtils/href'
-</pre>
-
-<h2 id="명세">명세</h2>
-
-<table class="standard-table">
- <tbody>
- <tr>
- <th scope="col">Specification</th>
- <th scope="col">Status</th>
- <th scope="col">Comment</th>
- </tr>
- <tr>
- <td>{{SpecName('HTML WHATWG', '#dom-hyperlink-href', 'HTMLHyperlinkElementUtils.href')}}</td>
- <td>{{Spec2('HTML WHATWG')}}</td>
- <td>Initial definition.</td>
- </tr>
- </tbody>
-</table>
-
-<h2 id="브라우저_호환성">브라우저 호환성</h2>
-
-
-
-<p>{{Compat("api.HTMLHyperlinkElementUtils.href")}}</p>
-
-<h2 id="같이_보기">같이 보기</h2>
-
-<ul>
- <li>{{domxref("HTMLHyperlinkElementUtils")}}</li>
-</ul>