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
// jQuery script to pull images and load bxslider slideshow for large screen, load single image (no slideshow) for small screens and old IE | |
// Tested on Chrome, FF, IE11, iOS, Surface | |
function slideshow_loader() { | |
var dir = "slideshow/"; | |
var large_width = "780"; | |
var small_width = "530"; | |
var $img; | |
if ($(window).width() > 568) { |
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
/* | |
x20170622 - sullivtm - 22 June 2017 | |
Uses SpryMedia's Datatables jQuery Plug-in. | |
TO USE: Put this on a page with a plain table and add class="RWDtable" to the table tag. If a thead is not present, | |
one will be created out of the first row of THs or a blank one will be added so SpryMedia's DataTable plug-in works. | |
Do not use colspan for table cells. | |
Supports multiple tables on one page. | |
*/ | |
$(document).ready(function(){ | |
$('table.RWDtable').each(function() { |