Advertisement
Guest User

Untitled

a guest
Apr 29th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function a1() {
  2. var newParagraph = document.createElement('div');
  3. newParagraph.className = '"alert alert-success" role="alert"';
  4. newParagraph.appendChild(document.createTextNode("<b>Richtig! </b>Du scheinst dich um dein Wissen zu bemühen."));
  5. document.getElementById('content').appendChild(newParagraph);
  6. window.setTimeout(partB,3000);
  7. addText();
  8. }
  9.  
  10. <div class="alert alert-success" role="alert"><b>Richtig! </b>Du scheinst dich um dein Wissen zu bemühen.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement