Many people play with PHP without necessarily being professional developers. For such people, package managers may make coding seem too complicated. This article shows how to bypass the Composer barrier when installing Composer-dependent PHP packages.
Frontend (Client-Side)
When I write about front-end (or client-side) programming stuff, I post them to this section. So, here you will find content related (but not limited) to HTML, JavaScript, and CSS. JavaScript is a big deal these days. And with technologies like Node.js, it is now much more than just a client-side scripting language. So, depending on whether I'm talking about JavaScript for client-side or server-side work, you may find the content listed here or on the server-side page.
TinyMCE And AJAX – Saving textarea Content To Database
TinyMCE is a rich-text editor that helps convert the HTML textarea element into a WYSIWYG editor. While working with it recently, I noticed that it doesn’t work well with AJAX out of the box. This article explains the problem and provides a solution.
Online Word Counter [With Full Source Code]
This page contains everything you need to perform (and understand) word and character counting: A fully functional word counter, detailed explanation of the code powering it, and a dump of the entire HTML, CSS, and JavaScript code that the tool uses.
Auto-Check MailPoet “Subscribe In Comments” Box
MailPoet comes with a “subscribe in comments” option that allows visitors who comment on a post to subscribe to your list via a checkbox. But this box is unchecked by default. With this jQuery snippet, you can have the box auto-checked on page load.
Remove Fading Of Images In JetPack Related Posts
The developers of the JetPack WordPress plugin decided to put a layer above the featured image thumbnails of “related posts”. This gives the images a faded look which you may not like. The CSS snippet shared here will help you disable this feature.
Pure JavaScript Alternatives To jQuery’s ready() Function
jQuery provides a handy .ready() function for testing whether the DOM is ready to execute some code. But what if you’re working with plain old JavaScript and don’t want to use jQuery? This article discusses 3 pure JavaScript alternatives.