Tipp: Elegant HTML in JavaScript einbinden
Manchmal kommt es vor, dass HTML-Markup innerhalb von JavaScript eingebunden werden soll. Etwa so: var htmlCode = "Hello World"; Ich nutze als dop...
Manchmal kommt es vor, dass HTML-Markup innerhalb von JavaScript eingebunden werden soll. Etwa so: var htmlCode = "Hello World"; Ich nutze als dop...
[embed]https://www.youtube.com/watch?v=1yCGUe8w5oA[/embed] In diesem Video zeige ich wie einfach es ist, den Frosted Glass-Effekt mit CSS umzusetzen. Der Frosted Glass-Effekt ist gerade sehr...
Sometimes you have to use other values in a variable when your application is in production as if when you are debugging it. For example you have to use another web service URL. Here is how...
On this post I want to collect different regular expressions, that I used in my projects so I can find them very quick, when I need them in the future. For more useful regular expressions you shoul...
Hint: I used the functions removeClass() and addClass() to make things easier. You can find them on
If you're like me and come from jQuery to pure JavaScript, these helper functions might be very helpful for you: function hasClass(el, className) { if (el.classList) return el.classList.cont...