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
# Teams 2.0 (no work account support yet) | |
winget uninstall MicrosoftTeams_8wekyb3d8bbwe | |
# Your Phone | |
winget uninstall Microsoft.YourPhone_8wekyb3d8bbwe | |
# Widgets (Web Experience Pack) | |
winget uninstall MicrosoftWindows.Client.WebExperience_cw5n1h2txyewy | |
# Cortana |
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
// Validation method for US currency | |
$.validator.addMethod("currency", function (value, element) { | |
return this.optional(element) || /^\$(\d{1,3}(\,\d{3})*|(\d+))(\.\d{2})?$/.test(value); | |
}, "Please specify a valid amount"); |