Skip to content

Instantly share code, notes, and snippets.

View Reelix's full-sized avatar
🏠
Working from home

Reelix Reelix

🏠
Working from home
View GitHub Profile
@Reelix
Reelix / styleMe.js
Last active November 24, 2016 10:33
<script>
// This is a comment
function someFunc()
{
console.log("Hello World!");
}
</script>
USE [master]
GO
CREATE DATABASE [insert_database_name_here] ON
( FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL10.MSSQLSERVER\MSSQL\Data\fileNameHere.mdf' ),
FOR ATTACH ;
GO
// Function
function stripChars(myWord)
{
myWord = myWord.replace(/[^\w\s]/gi, "");
alert(myWord);
}
// Button onclick event
stripChars('Hello!@!@%!@^! 5u*&%@p3r Wor(&(+)+l;d!!');
// Function
function reverseString(str)
{
str = str.split("").reverse().join("");
alert(str);
}
// Button onclick event
reverseString('I want to be reversed :D');
<script>
function formatCurrency()
{
// Get the values from the text-boxes
var symbol = document.getElementById('formatCurrencySymbol').value;
var number = parseFloat(document.getElementById('formatCurrencyNumber').value);
var decimalPlaces = document.getElementById('formatCurrencyDecimalPlaces').value;
// Do the formatting - Regex here!
var result = symbol + number.toFixed(decimalPlaces).replace(/(\d)(?=(\d{3})+\.)/g, "$1,");
<script>
// This function will allow 0123456789, left, right, and backspace on a textbox
// Use onkeypress="return isNumericKeyPress(event.keyCode);" to trigger
function isNumericKeyPress(keyCode)
{
return (keyCode >= 48 && keyCode <= 57 || keyCode === 8);
}
// This function will clear non-numeric values on a textbox when pasted
// Use onpaste="isNumericPaste(this);" to trigger