When it comes the time to write rich copyrighting, you would love to know more about HTML5 attributes and rules to write accessible and efficient contents. Did you know that Ordered List (ol
element) allows you to tweak some default values thanks to HTML attributes? Let’s find out how.
Posts for ‘tips’ keywords
Copy into clipboard with JavaScript
You certainly already met those buttons to “Copy into Clipboard”. They usually use a trick made with Flash to overcome a security feature provided by our web browsers? Avec the evolution of JS API and the listening of developer requests, you can now (since some months) do it with JavaScript natively.
How to fix the Widget error in WordPress 4.3
With the WordPress 4.3 version is came a big wave of new topics about widget error on WP. Official and non-official forums are full of this kind of reaction. Indeed, WordPress decided to not support anymore the PHP 4 like constructor, as the official documentation indicated it. (it has been updated)
Read URL GET parameters with JavaScript
Seems to be really easy when you think about it. Though, during the same week, we questioned me two times about that. In a server language, getting the URL parameters is really easy. But JavaScript doesn’t offer a way to do it natively. I propose to you a little function to do so, but perhaps other ways exist already.