Unmasking your hola! IP — Jan 23, 2015, 5:46 pm
I stumbled upon this when I wanted to use the hola! plugin for Chrome, which helps you to pretend to be from a different country when you visit websites. This is helpful if the site contains content, that is blocked in other countries.
...
Mobile Detection — Sep 2, 2013, 11:34 am
I wanted a simple javascript detection for mobile devices. Since retina resolutions and big screen tablets, detection by screen width is not reliable anymore. On my search I spend most of the time on this Stackoverflow discussion page.
...
Plain Text Paste with JavaScript — Apr 10, 2013, 9:45 pm
This was driving me nuts! I wanted to use a DIV with contenteditable=true, which of course is rich text featured. That is certainly a good thing, but what if you don't want pasted tags to screw up the design in the editable box?
...
Replace title-tag with jQuery-tooltips — Nov 13, 2012, 11:05 pm
Those who want to make the standard title-tooltips more beautiful, can use the following script with the help of jQuery. It finds the position of a link on a page and expands a tooltip below it (centered). A timeout prevents an up and down jumping of...
If you put multiple forms in a table-element, you will certainly have problems in most modern browsers. The form-tag will be closed by the browser, not including the input-fields. This is because it is not allowed anymore to nest form-tags...