April 26, 2024
  • April 26, 2024

Articles Posted by Johnny Thunder

jQuery Selectors

by on July 26, 2018 0
Selector Selects $("*") All elements $("#lastname") The element with id="lastname" $(".intro") All elements with class="intro" $(".intro,.demo") All elements with the class "intro" or "demo" $("p") All <p> elements $("h1,div,p") All <h1>, <div> and <p> elements $("p:first") The first <p> element $("p:last") The last <p> element $("tr:even") All even <tr> elements $("tr:odd") All odd <tr> elements [...] Read More

Introduction to Creating Tables in PostgreSQL

by on July 25, 2018 0
CREATE TABLE IF NOT EXISTS "Users" ( "id" text primary key, "fname" text, "lname" text, "email" text default '', "phone" text default '', "client" text, "passwordHash" text, "passwordSalt" text, "status" int, "type" int default 0, "active" boolean default true, "_lm" timestamp without time zone not null, "_lmBy" text, "_cBy" text, "_cOn" timestamp without time zone [...] Read More