We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4355972 commit fcf12e4Copy full SHA for fcf12e4
2-ui/2-events/04-default-browser-action/1-why-return-false-fails/solution.md
@@ -20,7 +20,7 @@ The fix is simple:
20
}
21
</script>
22
23
-<a href="http://w3.org" onclick="*!*return handler()*/!*">w3.org</a>
+<a href="https://w3.org" onclick="*!*return handler()*/!*">w3.org</a>
24
```
25
26
Also we can use `event.preventDefault()`, like this:
@@ -35,5 +35,5 @@ Also we can use `event.preventDefault()`, like this:
35
*/!*
36
37
38
-<a href="http://w3.org" onclick="*!*handler(event)*/!*">w3.org</a>
+<a href="https://w3.org" onclick="*!*handler(event)*/!*">w3.org</a>
39
0 commit comments