up
This commit is contained in:
parent
4ae129054e
commit
ab9ab64bd5
476 changed files with 3370 additions and 532 deletions
|
@ -0,0 +1,35 @@
|
|||
importance: 3
|
||||
|
||||
---
|
||||
|
||||
# Make external links orange
|
||||
|
||||
Make all external links orange by altering their `style` property.
|
||||
|
||||
A link is external if:
|
||||
- It's `href` has `://` in it
|
||||
- But doesn't start with `http://internal.com`.
|
||||
|
||||
Example:
|
||||
|
||||
```html run
|
||||
<a name="list">the list</a>
|
||||
<ul>
|
||||
<li><a href="http://google.com">http://google.com</a></li>
|
||||
<li><a href="/tutorial">/tutorial.html</a></li>
|
||||
<li><a href="local/path">local/path</a></li>
|
||||
<li><a href="ftp://ftp.com/my.zip">ftp://ftp.com/my.zip</a></li>
|
||||
<li><a href="http://nodejs.org">http://nodejs.org</a></li>
|
||||
<li><a href="http://internal.com/test">http://internal.com/test</a></li>
|
||||
</ul>
|
||||
|
||||
<script>
|
||||
// setting style for a single link
|
||||
let link = document.querySelector('a');
|
||||
link.style.color = 'orange';
|
||||
</script>
|
||||
```
|
||||
|
||||
The result should be:
|
||||
|
||||
[iframe border=1 height=180 src="solution"]
|
Loading…
Add table
Add a link
Reference in a new issue