https://github.com/suslmk-lee/test-git2
https://github.com/suslmk-lee/test-git2
Last synced: 4 months 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-17T06:33:51.000Z (7 months ago)
- Last Synced: 2025-01-12T16:11:36.506Z (6 months ago)
- Size: 60.5 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>';
}
}