Skip to content

Instantly share code, notes, and snippets.

View juanbrujo's full-sized avatar
:octocat:

Jorge Epuñan juanbrujo

:octocat:
View GitHub Profile
@juanbrujo
juanbrujo / UntilYouPayMe.js
Last active December 15, 2016 14:15
Use this JavaScript function to annoy your clients that insist in not paying you.
(function(){
function randomErrors(){
var errorMessages = ['Unexpected Error!','Something happended, please try again'];
var randomMessage = errorMessages[Math.floor(Math.random() * errorMessages.length)];
var currentURL = (window.location != window.parent.location) ? document.referrer : document.location;
if (confirm( randomMessage )) {
window.location.reload(true);
} else {
window.location.reload(true);
}
@juanbrujo
juanbrujo / jquery.checkboxes-events.js
Last active February 23, 2016 18:51
jQuery checkboxes attach event on change state
// react then checkbox change state
$('input[type="checkbox"]').on('change', function(e) {
if( this.checked ) {
console.log('checked');
} else {
console.log('not checked');
}
});
// check
@juanbrujo
juanbrujo / arrow-scss-mixin.scss
Created December 23, 2015 21:44
Easy creation of CSS-only directional arrows
// Arrow SCSS Mixin
//
// Easy creation of CSS-only directional arrows
//
// .arrow {
// @include arrow(100px, #f60, up);
// }
@mixin arrow($size: 10px, $color: inherit, $direction: down) {
@juanbrujo
juanbrujo / getElement.js
Created December 8, 2015 14:19
Shortcut to get elements
// Shortcut to get elements
var $ = function(element) {
if (element.charAt(0) === "#") { // If passed an ID...
return document.querySelector(element); // ... returns single element
}
return document.querySelectorAll(element); // Otherwise, returns a nodelist
};
@juanbrujo
juanbrujo / numberToCurrency.js
Created October 19, 2015 21:22
transforms a number to currency used in Chile, adds '$''
/*!
* numberToCurrency(@number)
* transforms a number to currency used in Chile, adds '$''
* @number: int
* http://stackoverflow.com/a/17563787/2148418
* USE: numberToCurrency(876142) // returns $876.142
*/
function numberToCurrency(number){
return "$" + (number + "").replace(/(\d)(?=(\d{3})+(?!\d))/g, "$1.");
}
@juanbrujo
juanbrujo / multipleEventsListeners.js
Last active August 30, 2024 15:27
Add the capability to attach multiple events to an element, just like jQuery does
/**
* multipleEventsListeners.js
* Add the capability to attach multiple events to an element, just like jQuery does
* https://gist.github.com/juanbrujo/a1f77db1e6f7cb17b42b
*/
function multipleEventsListeners(elem, events, func) {
var event = events.split(' ');
for (var i = 0; i < event.length; i++) {
elem.addEventListener(event[i], func, false);
@juanbrujo
juanbrujo / mergeObjects.js
Last active September 8, 2015 13:46
mergeObjects: merge array elements according to given certain key/value
// Given this array:
var arr = [
{
"pais": "Chile",
"herramienta": "GTalk, Mailchimp",
"fecha": "ayer"
},
{
"pais": "Argentina",
"herramienta": "JIRA, Mailchimp",
@juanbrujo
juanbrujo / sass-maps-index-iterator.css
Created August 4, 2015 13:49
sass-maps loop with index iterator
/**
* output from sass-maps-index-iterator.scss
*/
li:nth-of-type(1):before {
content: "english - hello";
}
li:nth-of-type(2):before {
content: "spanish - hola";
}
@juanbrujo
juanbrujo / npm-starter.js
Last active February 11, 2024 23:16
Starter for a basic NPM module
// moduleName = name of your npm module
var moduleName = (function moduleName() {
"use strict";
// YOUR PRETTY JS CODE THAT WILL CHANGE THE WORLD
// return whatever;
})( this );
@juanbrujo
juanbrujo / README.md
Last active August 29, 2015 14:23
createElement JavaScript function

#createElement(element,attribute,inner);

use:

createElement("tag","[attr:val][attr:val]",[element1,"some text",element2,element3,"or some text again :)"]);

basic: