diff options
author | 2021-09-28 10:25:58 -0400 | |
---|---|---|
committer | 2021-09-28 10:25:58 -0400 | |
commit | dd4234a5b5079e7fe6799d6fd9c52c6b299a0228 (patch) | |
tree | 1503f0e43cc5b7cd740a0e331203a66e22e6929a /docs/src | |
parent | 6611b6b93135a61eda57a3c04a1c08df5de07be6 (diff) | |
download | astro-dd4234a5b5079e7fe6799d6fd9c52c6b299a0228.tar.gz astro-dd4234a5b5079e7fe6799d6fd9c52c6b299a0228.tar.zst astro-dd4234a5b5079e7fe6799d6fd9c52c6b299a0228.zip |
Add script tag example (#1435)
* Add script tag example
Added example of using Astro with client side JavaScript
* Removed partial hydration example comment
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/pages/core-concepts/component-hydration.md | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/src/pages/core-concepts/component-hydration.md b/docs/src/pages/core-concepts/component-hydration.md index bb0fbce29..ce7e3c304 100644 --- a/docs/src/pages/core-concepts/component-hydration.md +++ b/docs/src/pages/core-concepts/component-hydration.md @@ -95,6 +95,19 @@ To make your Astro component interactive, you will need to convert it to the fro Alternatively, you could add a `<script>` tag to your Astro component HTML template and send JavaScript to the browser that way. While this is fine for the simple stuff, we recommend a frontend framework for more complex interactive components. +```astro +--- +// Example: Using Astro with script tags +--- +<h1>Not clicked</h1> +<button>Click to change heading</button> +<script> +document.querySelector("button").addEventListener("click",() => { + document.querySelector("h1").innerText = "clicked" +}) +</script> +``` + [mdn-io]: https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API [mdn-ric]: https://developer.mozilla.org/en-US/docs/Web/API/Window/requestIdleCallback [mdn-mm]: https://developer.mozilla.org/en-US/docs/Web/API/Window/matchMedia |