Abraham Garcia in Javascript/jQuery   Friday, May 15 2020

Match Height CSS and JS Example

A jQuery Library to Have Divs on the same Height. Simple Snippet of Code. Make Your Divs all the Same Height.

A known and used library for Match Height in jQuery.  https://github.com/liabru/jquery-match-height Simply include the JS Script <script src="jquery.matchHeight.js" type="text/javascript"></script> And add the class .item to the items you want to

Continue reading
Abraham Garcia in Javascript/jQuery   Friday, December 13 2019

Disable Weekday from Datepicker JS

How to disabled Friday, Saturday, or Sunday from Datepicker JS. A Simple Script

This is a snippet to disable Friday, Saturday, and Sunday on the JS Datepicker.  <script> jQuery(document).ready(function($){ jQuery("#datepicker2").datepicker({ minDate: new Date(), dateFormat: 'dd-mm-yy', beforeShowDay: function(date) { var show = true; if(date.getDay()==6||date.getDay()==0||date.getDay()==5)

Continue reading
Abraham Garcia in Javascript/jQuery   Monday, November 25 2019

Remove All Matching Classes From Page jQuery

How to Remove All Classes from HTML DOM. This matches for similar classes and removes them.

This is a small snippet on how to remove all classes from matched class on jQuery.  $('#builder [class*="ui-id-"]').removeClass(function(i, j) { return j.match(/ui-id-/g).join(" "); }); Full Documentation: https://stackoverflow.com/questions/17691932/jquery-remove-all-matching-classes

Continue reading
Abraham Garcia in Javascript/jQuery   Saturday, November 16 2019

Stripe New JS Button Example

This is the New Stripe JS Integration with PHP. I had not done this in a while so it was a little hard getting integrated, but it was fun.

These are the code snippets to get started with the New Stripe JS Button. HTML <div id="card-element"> <!-- A Stripe Element will be inserted here. --> </div> <!-- Used to

Continue reading