Currently Browsing: Miscellaneous

Amazing 8 Year Old Owns Adult In Dance-Off Breakdancing

8 year old kid owns adult professional breakdancer. Proper Owned!

How to sell your music online free of charge

I have created a little guide that will teach you what you need to know about how to get your music on Spotify, iTunes, Amazon, Napster, Nokia Music Store, Beatport and other online music services and how you will start making some money by doing so. Find out everything you need to know about how to sell...

Discover how to force your Windows phone to run the Mango firmware update

Before we begin, keep in mind that a total of three updates must be installed on the path to Mango: 7392, 7403, and 7720, which is Mango itself. The process will take a while. Some people may already have 7392, in which case things will move a bit faster. I also recommend removing any music and unessential...

Syntax Highlighting Plugins for WordPress

I have tried a number of syntax highlighting plugins for wordpress but these are the ones I liked the most: jQuery.Syntax: $(function() { setInterval(function() { var counter = parseInt($('body').data('counter')); if(!counter) { counter = 0; } ...

.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) { /* NAME: dnkl_option([visible, value, text]) VERS: 1.0 DESC: Hide/Show option item in a select list USAGE: $('#mySelectID').dnkl_option({ visible: false, value: '1' }); */ var settings...

.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() { ...