Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suslmk-lee/test-git2
https://github.com/suslmk-lee/test-git2
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/suslmk-lee/test-git2
- Owner: suslmk-lee
- License: apache-2.0
- Created: 2023-06-13T08:49:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-11T04:31:51.000Z (10 months ago)
- Last Synced: 2024-03-11T05:33:23.599Z (10 months ago)
- Size: 56.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Dynamic Content Example
Choose an option:
Option 1
Option 2
Option 3function showContent(option) {
var contentDiv = document.getElementById('content');
if (option === 'option1') {
contentDiv.innerHTML = '<p>This is the content for Option 1.</p>';
} else if (option === 'option2') {
contentDiv.innerHTML = '<p>This is the content for Option 2.</p>';
} else if (option === 'option3') {
contentDiv.innerHTML = '<p>This is the content for Option 3.</p>';
}
}