Skip to content

Instantly share code, notes, and snippets.

@Felipe-Marques
Forked from mojaray2k/Bootstrap 1
Created November 19, 2019 18:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Felipe-Marques/7b25c80687d14783d497714c93961916 to your computer and use it in GitHub Desktop.
Save Felipe-Marques/7b25c80687d14783d497714c93961916 to your computer and use it in GitHub Desktop.
This is a fallback Script for Bootstrap CDN
//bootstrapfallback.js
//<!-- BOOTSTRAP JS WITH LOCAL FALLBACK-->
//<script type="text/javascript" src="//netdna.bootstrapcdn.com/twitter-bootstrap/2.1.1/js/bootstrap.min.js"></script>
//<script> if(typeof($.fn.modal) === 'undefined') {document.write('<script src="//www.mysite.com/js/v/bootstrap-2.1.1.js"><\/script>')}</script>
//<!-- BOOTSTRAP CDN FALLBACK CSS-->
//<script>$(document).ready(function() {
var bodyColor = $('body').css("color"); if(bodyColor != 'rgb(51, 51, 51)') {$("head").prepend("<link rel='stylesheet' href='//www.mysite.com/css/fw/bootstrap-combined-2.1.1.css' type='text/css' media='screen'>");}
//});</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment