-
-
Open/Close Elements
Sometimes you need to be able to hide elements on a page, the following functions will help with the task of hiding/showing those elements.
-
CopyText Via ID
This function is to copy text or other HTML elements from one ID to another ID
-
Hide/Unhide Element Via ID
In this code it is important to have visibility = ‘hidden’ and display = ‘none’ to hide without leaving white space In this code it is important to have visibility = ” and display = ” to show
-
Code | CSharp | JavaScript | PHP | PowerShell | VB | VB.NET
New Line
Often we forget what code we need to use to create a new line (line break), hopefully this will help. n = CR (Carriage Return) Used as a new line character in Unix r = LF (Line Feed) Used as a new line character in Mac OS nr = CR + LF Used as a…
-