Skip to content

Instantly share code, notes, and snippets.

View NickDeckerDevs's full-sized avatar

nicholas decker NickDeckerDevs

View GitHub Profile
@NickDeckerDevs
NickDeckerDevs / equalHeightByRow.js
Last active January 20, 2017 16:05
Javascript / Jquery Equal Height Script to cycle through each container, then size the targeted elements inside that container. This works well when you will have the multiple named containers (or rows) of content and don't want all of the content to be the size as the above row. This keeps the rows with matching elements the same. .
equalheightByRow = function(container, target, checkChildren) {
$(container).each(function() {
var targets = $(this).find(target),
count = 0,
minHeight = 0,
maxHeight = 0;
targets.each(function() {
count++;
var elem = $(this);
@NickDeckerDevs
NickDeckerDevs / equalheight-revisited.js
Last active April 19, 2017 16:20
I was having issues with the size of the container not resetting with resize, this removes the style before factoring in. Also looks at the children height to make sure we are factoring that in. If it doesn't have children, it goes one deeper. Will probably get messy if you go too far down. The last issues I worked with here was not being able t…
equalheight = function (container) {
var newHeight = 0,
minHeight = 0;
$(container).each(function() {
var elem = $(this);
var currentStyle = elem.attr('style') == undefined ? '' : elem.attr('style');
if(currentStyle != '') {
var newStyle = currentStyle.indexOf('height') > -1 ? currentStyle.replace(/height.*;/, '') : currentStyle;
elem.attr('style', newStyle);
}
@NickDeckerDevs
NickDeckerDevs / ajax-example.js
Created February 1, 2017 12:47
Very basic ajax example
var url = 'http://';
$.ajax({
type : 'GET',
url : url,
dataType : 'html',
cache: 'false',
success : function(data){
/* This target is where the data you pulled in will be placed. You can parse teh data here to only take a section of it (it will be pulling in the entire page) */
$('#test-div').html(data);
@NickDeckerDevs
NickDeckerDevs / google-search-minimal-box.html
Last active February 9, 2017 14:31
This is a decent template to get the search area and button right for the custom google search -- make sure to replace the {{ replace with id }} and {{ replace }}
<div id="google-search-container" class="google-search-container"><gcse:search></gcse:search></div>
<script>
(function() {
var cx = '{{ replace with id }}';
var gcse = document.createElement('script');
gcse.type = 'text/javascript';
gcse.async = true;
gcse.src = 'https://cse.google.com/cse.js?cx=' + cx;
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(gcse, s);
@NickDeckerDevs
NickDeckerDevs / sidr.menu.html
Last active May 19, 2017 18:31
when you need some sidr in your life
<div class="mobile">
<a id="responsive-menu-button" href="#sidr-main">MENU</a>
</div>
<div class="sidr" style="display: none;">
<div id="mobile-menu">
<div id="nav-close">
<a class="sidr-close btn btn-small">X Close</a>
</div>
<div class="mobile-menu-wrapper">
@NickDeckerDevs
NickDeckerDevs / Connecting PHP 5.6 to MSSQL.md
Created March 18, 2017 04:51 — forked from joecampo/Connecting PHP 5.6 to MSSQL.md
Connecting PHP 5.6 to MSSQL - Ubuntu (Debian) w/ Apache
@NickDeckerDevs
NickDeckerDevs / luckyorange.js
Last active April 18, 2018 20:36
lucky orange script to block ip addresses in the google console
// replace ip addresses with your ip addresses.
// place this in google console to block all of these from your results
var ips = [
'10.103.253.202',
'10.165.23.18',
'10.252.160.205'
];
for(var i = 0; i < ips.length; i++) {
$('#settings-blocked .btn').trigger('click');
$('#block_ip').val(ips[i]).parent().find('.btn').trigger('click');
@NickDeckerDevs
NickDeckerDevs / fixBandPositioning.js
Last active April 25, 2017 15:17
Thread - Fix Orange Band Positioning
function fixBandPositioning(targetClass) {
if(!bandExists(targetClass)) return false;
$('.band-wrapper.'+targetClass).each(function() {
var currentBand = $(this);
if(window.outerWidth > 767) {
var bandHeight = currentBand.outerHeight();
var bandOffset = bandHeight / -Math.abs(4.233);
var bandMargin = (Math.round(bandOffset * 1000) / 1000) + 'px';
var bandContentOffset = (Math.round(Math.abs(bandOffset) * 1000) / 1000) + 'px';
currentBand.css('margin-left', bandMargin);
@NickDeckerDevs
NickDeckerDevs / thread.bands.to.make.her.dance.js
Created April 25, 2017 14:59
Skewered Beef Tips and corn nuggets
jQuery(document).ready(function($) {
function fixBandPositioning() {
if($('.band-wrapper.right').length > 0) {
if(window.outerWidth >= 784) {
var bandHeight = $('.band-wrapper.right').outerHeight();
var bandMargin = bandHeight / -Math.abs(4.233);
var bandMarginSkew = bandHeight / Math.abs(4.233);
bandMargin = (Math.round(bandMargin * 1000) / 1000) + 'px';
bandMarginSkew = (Math.round(bandMarginSkew *1000) / 1000) + 'px';
$('.band-wrapper.right').css('margin-left', bandMargin);
$(document).ready(function() {
var url = window.location.href;
if(url.indexOf('type=') > -1) {
var resource_type = url.substring(url.indexOf("type=")+5, url.length);
console.log(resource_type)
$('.resourcesUl a').each(function() {
var href = $(this).attr('href');
console.log(href)
if(href == resource_type) {
$(this).removeClass('white').addClass('green');