This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
customFunction 2006 Sean Walsh | |
Developed by: Developer Name | |
Format: | |
customFunction ( field ) | |
Parameters: | |
field - any related field, repeating field, or set of non-repeating fields; or an expression that returns a field, repeating field, or set of non-repeating fields. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Change Title Tag on Blur | |
var titleCurrent = document.title; | |
var titleList = [ | |
"Hey, over here.", | |
"Don't you forget about me", | |
"Please come back" | |
]; | |
var titleIndex = ""; | |
function titleRandom(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body { margin: 15px;} | |
.bold { font-weight: bold; } | |
.caps { text-transform: uppercase; } | |
.center { text-align: center; } | |
.circle { list-style: circle; } | |
.smcaps { font-variant: small-caps; } | |
.unstyled { list-style: none; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.onblur = function () { document.title = 'Your new HTML Title tag'; } | |
window.onfocus = function () { document.title = 'The default title tag'; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
table1.field1, table2.field1 | |
FROM | |
table1 | |
INNER JOIN | |
table2 | |
ON | |
table1.primaryKey = table2.foreignKey | |
WHERE | |
table1.field2 = 'query' |
NewerOlder