Skip to content

Instantly share code, notes, and snippets.

View gabydevdev's full-sized avatar

Gabriela Carral gabydevdev

View GitHub Profile
@gabydevdev
gabydevdev / jquery-boilerplate.js
Last active October 7, 2017 02:43 — forked from tommcfarlin/jquery-boilerplate.js
How to properly add jQuery scripts to WordPress
// Loading scripts in footer
(function($) {
"use strict";
// example for document ready
$(document).ready(function() {
// Your code here
});
}(jQuery));