Adapted from past work and this article on WP Engine’s blog.
WordPress Post Text Size Changer Using jQuery
This article is taken from here: http://wp.tutsplus.com/tutorials/theme-development/creating-a-wordpress-post-text-size-changer-using-jquery/ What Are We Actually Going to Create In this tutorial we are going to create a front-end text size changer that alters the font size of the posts as per the reader’s convenience. Suppose you are on a blog reading a post and you find it tough traversing through Full Article…
Creating a Foundation 4 WordPress theme
In the first version of Foundation 4 I found a JQuery conflict when creating a WordPress theme. This fix resolved me issue. Note the later releases of Foundation 4 may not require this fix. Kudos to Radek Stangel. Menu toggle in top-bar (on small screen size) doesn’t work when you use default WordPres jQuery (version 1.8.3), however it Full Article…
Mobile Navigation Toggle with jQuery
Taken from web designer wall. Here’s the demo. This tutorial shows you how to create a mobile navigation with jQuery as seen on the sites listed above. jQuery will be used to prepend the menu icon and toggle the navigation. This trick doesn’t require any extra/un-semantic HTML tags. HTML Below is the sample navigation HTML Full Article…
Skrollr – Information
Skrollr is a stand-alone parallax scrolling library for mobile (Android + iOS) and desktop. No jQuery. Just plain JavaScript (and some love). https://github.com/Prinzhorn/skrollr The official skrollr demo. A great tutorial, and its demo.
Some basic web app features to a website
How to hide the browser address bar: http://davidwalsh.name/hide-address-bar Use the Bookmark Bubble to suggest Android users add the site to their home screen Use the ‘Add to home screen’ to suggest iOS users add the site to their home screen
How to remove a parent theme template
Taken from here: http://wordpress.stackexchange.com/a/58081/13712
jQuery Show / Hide Plugin
Due to popular demand here’s a re-written version of the tutorial I wrote over a year ago on how to show and hide content using jQuery. After I first published the post I’ve had a lot of requests as to how you can show and hide multiple divs so I’ve written this plugin which does Full Article…
Isotope in WordPress
Here are a bunch of links to pages where people discuss implementing Isotope in WordPress. Using Isotope.js to make a filterable WordPress portfolio ISOTOPE.JS FILTERING WITH WORDPRESS CATEGORIES A BETTER WAY TO IMPLEMENT ISOTOPE IN WORDPRESS JQUERY ISOTOPE PLUGIN ON WORDPRESS – HOW TO GET ISOTOPE WORKING The Bedroom Wall example
Using Javascript libraries with your plugin or theme
When you develop a WordPress plugin or theme, you might want to make use of some of the Javascript libraries distributed with the WordPress package such as Prototype, Scriptaculous and jQuery. Simple enough, they are in the “wp-includes/js/” folder, so what more is there to it? Can’t I just add a SCRIPT tag in the Full Article…