The fine folks at Zurb has released the new 6.4.1 version of Foundation and with it comes the brand new X-Y Grid. This is important because in the very near future, DobsonDev Underscores will also switch over to use the X-Y […] Read More »
Tag: Javascript
jQuery Attribute Contains Selector
I recently found myself in a position where I had to sort through the classes of rows on a table where the classes where defined directly via a value from the database. Unfortunately for me, the database entry had words […] Read More »
DobsonDev Underscores Update
DobsonDev Underscores has now been updated to Foundation 6. If you want to update visit the GitHub page to download the project (or if you’ve already downloaded it you can do a fetch to update it). Below is the information […] Read More »
DobsonDev Shortcodes 2.0.0
I’m happy to say that I’ve released DobsonDev Shortcodes 2.0.0. This release includes a huge new feature (hence the 2.0.0), a TinyMCE plugin that gives users an interface within TinyMCE for adding shortcodes to your content. Gone are the days […] Read More »
Custom TinyMCE Buttons Example Plugin
My example WordPress TinyMCE Example plugin is now done and up on GitHub. Download it and play around with it! Below you can see the README which I’ve embedded using DobsonDev Shortcodes – so download that to your blog if […] Read More »
Custom TinyMCE Buttons in WordPress
Creating your own custom TinyMCE buttons is a great feature that can add a lot of value to your WordPress plugin or theme. Adding a TinyMCE button to your editor makes it easy for the user to add your shortcodes […] Read More »
Using the WordPress Media Library
In one of my previous articles I talked about using the WordPress media uploader for your own plugins/themes. I had quite a few questions in the comments of that article about how to do certain things and to elaborate on […] Read More »
WordPress AJAX Example
AJAX (Asynchronous JavaScript and XML) is one of the handiest features/group of interrelated technologies you can include on your website. With AJAX you enable your page to perform database retrievals and changes without reloading the page. WordPress comes with built […] Read More »
Web Workers Demo
Web Workers are a simple JavaScript API that allow for background threads to be run while the user experience/interface is left uninterrupted. Web Workers are passed messages by the main script, run their process with that message and then return […] Read More »
Using the WordPress Media Uploader
Using the WordPress media library in your own plugin/theme will not only save you a bunch of time but will also incorporate the Media Library that clients are already used to using. This article will provide an example of how […] Read More »