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: […]

WordPress Widget Logic

Show widget only on specific pages or posts This example displays the widget only on the page that has the […]

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 […]

CSS color tricks

Multi-color text   The idea of making a multi-color text is using background gradient, and make the text itself transparent. […]