• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/6

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

6 Cards in this Set

  • Front
  • Back
Create Div element
document.createElement('div');
Create Div Class Name and Id Name
iDiv.id = 'block';
iDiv.className = 'block';
Append to Body of Document
document.getElementsByTagName('body')[0].appendChild(iDiv);
Create ClassName to Existing Div Id or Class
Use
document.getElementById('question-header').className = 'cool'
Add/Cycle through Css Style Elements
var el = document.getElementById('#myElement'),
css = {
fontsize: '12px',
left: '200px',
top: '100px'
};

for(i in css){
el.style[i] = css[i];
}
Add to Existing Div class name
document.getElementById('foo').className += ' class_two'