Typing effect and deleting effect

HTML: <div id=”container”> <div id=”text”></div><div id=”cursor”></div> </div> CSS: #container { text-align: center; } #text { display: inline-block; vertical-align: middle; color: […]

Download a table from html as CSV

// Quick and simple export target #table_id into a csv function download_table_as_csv(table_id, separator = ‘,’) { // Select rows from […]