Skip to content

Instantly share code, notes, and snippets.

View Avalojandro's full-sized avatar
🚀
Learning

Alejandro Avalos Avalojandro

🚀
Learning
View GitHub Profile
@garak
garak / rte.html
Created July 7, 2020 16:21
Pure JS rich text editor
<!doctype html>
<html>
<head>
<title>Rich Text Editor</title>
<script type="text/javascript">
var oDoc, sDefTxt;
function initDoc() {
oDoc = document.getElementById("textBox");
sDefTxt = oDoc.innerHTML;