Variables and function names are case sensitive. And, always remember that native javascript function and CSS properties in javascript are camelCase.
getElementById('myId') != getElementByID('myId'); // it should be "Id" not "ID" getElementById('myId') != getElementById('myID'); // "Id" again does not equal"ID"
Variables and function names are case sensitive. And, always remember that native javascript function and CSS properties in javascript are camelCase.
getElementById('myId') != getElementByID('myId'); // it should be "Id" not "ID" getElementById('myId') != getElementById('myID'); // "Id" again does not equal"ID"