|
|
| Zeile 2: |
Zeile 2: |
|
| |
|
| var myElement = document.getElementById('testjs'); | | var myElement = document.getElementById('testjs'); |
| myElement.innerHTML = '<html> | | myElement.innerHTML = '<html>Hello World</html>'; |
| <head>
| |
| <meta name="viewport" content="width=device-width, initial-scale=1">
| |
| <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css">
| |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
| |
| <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js"></script>
| |
| </head>
| |
| <body>
| |
| | |
| <div class="container">
| |
| <h2>Simple Collapsible</h2>
| |
| <p>Click on the button to toggle between showing and hiding content.</p>
| |
| <button type="button" class="btn btn-info" data-toggle="collapse" data-target="#demo">Simple collapsible</button>
| |
| <div id="demo" class="collapse">
| |
| Lorem ipsum dolor sit amet, consectetur adipisicing elit,
| |
| sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
| |
| quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.
| |
| </div>
| |
| </div></html>';
| |
|
| |
|
| }()); | | }()); |
(function () {
var myElement = document.getElementById('testjs');
myElement.innerHTML = '<html>Hello World</html>';
}());