This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var $window = $(window); //Window object | |
var scrollTime = 1.2; //Scroll time | |
var scrollDistance = 270; //Distance. Use smaller value for shorter scroll and greater value for longer scroll | |
$window.on("mousewheel DOMMouseScroll", function(event){ | |
event.preventDefault(); | |
var delta = event.originalEvent.wheelDelta/120 || -event.originalEvent.detail/3; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Prevent FOUC (flash of unstyled content) - http://johnpolacek.com/2012/10/03/help-prevent-fouc/ --> | |
<style type="text/css"> | |
.no-fouc {display: none;} | |
</style> | |
<script type="text/javascript"> | |
document.documentElement.className = 'no-fouc'; | |
// add to document ready: $('.no-fouc').removeClass('no-fouc'); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//events - a super-basic Javascript (publish subscribe) pattern | |
var events = { | |
events: {}, | |
on: function (eventName, fn) { | |
this.events[eventName] = this.events[eventName] || []; | |
this.events[eventName].push(fn); | |
}, | |
off: function(eventName, fn) { | |
if (this.events[eventName]) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Published under GPL | |
// tutorial here: https://codeable.io/community/how-to-import-json-into-wordpress/ | |
class Developer_Import { | |
public function __construct() { | |
add_action( 'wp_ajax_import_developer', array( $this, 'import_developer' ) ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var myHonda = {color: "red", wheels: 4, engine: {cylinders: 4, size: 2.2}}; | |
//console edits and results | |
myHonda.color | |
"red" | |
myHonda.engine | |
Object {cylinders: 4, size: 2.2} | |
myHonda.engine.size | |
2.2 | |
myHonda.engine.size = "3.3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//create the object with properties & values. | |
var myCar = new Object(); | |
myCar.make = "Ford"; | |
myCar.model = "Mustang"; | |
myCar.year = 1969; | |
//then LOOP(enumerate) through all the properties of the object myCar | |
function showProps(obj, objName) { | |
var result = ""; | |
for (var i in obj) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//1 | |
function Car(make, model, year, owner) { | |
this.make = make; | |
this.model = model; | |
this.year = year; | |
this.owner = owner; | |
//Notice the use of this to assign values to the object's properties based on the values passed to the function. | |
} | |
//2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var a = new Array(); | |
a[0] = "myString1"; | |
a[1] = "myString2"; | |
a[2] = "myString3"; | |
//short hand version | |
var a = ["myString1", "myString2", "myString3"]; |


NewerOlder