.dnkl_onlyAlphaNumeric()

This jQuery plugin makes an input field only contain alphanumeric characters jQuery.fn.dnkl_onlyAlphaNumeric = function() { /* NAME: dnkl_onlyAlphaNumeric() VERS: 1.0 DESC: Removes non-alpha/numeric characters from value USAGE: $('#myInputID').dnkl_onlyAlphaNumeric(); */ return...

.dnkl_option()

This jQuery plugin hide or show an option item in a select list. jQuery.fn.dnkl_option = function(optionSettings) { /* PLUGIN: dnkl_option([visible, value, text]) VERS: 2.0 DESC: Hide/show option item in a select list USAGE: $('#mySelectID').dnkl_option({ visible: false, value: '1' }); ...

.dnkl_thousandSeparator()

This jQuery plugin separates a numeric value by a given character in an input field on blur. jQuery.fn.dnkl_thousandSeparator = function(separatorSettings) { /* NAME: dnkl_thousandSeparator([sep, dec]) VERS: 1.0 DESC: Separates a numeric value from 1234567,89 into 1.234.567,89 ...

.dnkl_onlyAlpha()

This jQuery plugin makes an input field only contain alpha characters. jQuery.fn.dnkl_onlyAlpha = function() { /* NAME: dnkl_onlyAlpha() VERS: 1.0 DESC: Removes non-alpha characters from value USAGE: $('#myInputID').dnkl_onlyAlpha(); */ return $(this).each(function() { ...