This file contains 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
// enter this code on e.g., https://bookmarklets.org/maker/ to create a bookmarklet | |
const input = prompt('Enter text to convert to Title Case'); | |
prompt('Converted text below:', input.toTitleCase()); | |
/* To Title Case © 2018 David Gouch | https://github.com/gouch/to-title-case */ | |
// eslint-disable-next-line no-extend-native | |
String.prototype.toTitleCase = function () { | |
'use strict' |
This file contains 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
<div id="SidebarTheDeck"> | |
<script type="text/javascript"> | |
(function(id) { | |
var theDeck = document.createElement('script'); theDeck.type = 'text/javascript'; theDeck.async = true; | |
theDeck.src = 'http://connect.decknetwork.net/deck' + id + '_js.php?' + (new Date().getTime()); | |
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(theDeck, s); | |
})("DF"); | |
</script> | |
</div> |