Blog

Archive for the JavaScript Category


In JavaScript Print all the numbers from 1 to 255
Posted on June 2, 2015 in Algorithms, JavaScript by Matt Jennings

for(var i = 1; i < 256; i++) {
console.log(i);
}

 


How to Execute JavaScript, Including an External Script, Only When a DOM Element is Present
Posted on April 27, 2015 in JavaScript, jQuery by Matt Jennings

Below is an example using jQuery of how to load the Google Maps API V3 external script and instantiate a Google …

Read more


Document Ready Substitute to Make Custom jQuery Execute in WordPress
Posted on March 16, 2015 in JavaScript, jQuery, WordPress by Matt Jennings

To make custom jQuery execute in WordPress (at least 4 and above), in your external JS file add the code …

Read more


Exporting Groups (Folders) to Files in Photoshop
Posted on March 5, 2014 in JavaScript, Photoshop by Matt Jennings

Unfortunately, Photoshop CS5 and below only offers an option to export layers to files. Yet there is no option to …

Read more