Skip to content

Instantly share code, notes, and snippets.

View jmonterroso's full-sized avatar

Jayson Monterroso jmonterroso

View GitHub Profile
@jmonterroso
jmonterroso / attached-events.js
Created April 14, 2015 15:35
jQuery Attached Events
("#foo").on({
click: function(){ alert("Hello") },
mouseout: function(){ alert("World") }
});​​​
// Lookup events for this particular Element
​$._data( $("#foo")[0], "events" );
$._data($("#button1").get(0),"events")
@jmonterroso
jmonterroso / find-larger-width
Last active August 29, 2015 14:15
Larger element than width
$('*').each(function () {
var viewportWidth = 1024;
var outerWidth = $(this).outerWidth();
if( outerWidth > viewportWidth ){
//prints element in console so you can check what's the element
console.log($(this)[0]);
}
});
@jmonterroso
jmonterroso / README.md
Last active August 29, 2015 14:11 — forked from micjamking/README.md

Deploying Yeoman apps to Heroku

Prerequisites

This assumes you already have a Yeoman app and are ready for publishing

Build for Production

Create production directory & assets