Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/suslmk-lee/test-git2


https://github.com/suslmk-lee/test-git2

Last synced: about 1 month ago
JSON representation

Awesome Lists containing this project

README

        

# Dynamic Content Example


Choose an option:


Option 1
Option 2
Option 3

function 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>';
}
}