Capitalize the first letter of string in JavaScript - Stack Overflow
function firstLetterToUpperCase(str) {
return str.replace(/^\w/, function($0) { return $0.toUpperCase(); });
}
Labels: JavaScript
function firstLetterToUpperCase(str) {
return str.replace(/^\w/, function($0) { return $0.toUpperCase(); });
}
Labels: JavaScript
div.editableContent {
width: 390px;
height: 561px;
border: 1px solid #ccc;
background-color: white;
}
HTML
Useful Attribute
mailSubject.contentEditable = true;
mailContent.contentEditable = true;
Labels: CSS, HTML, JavaScript