Currently, I've included my files from Google, Bootstrap CDN and jsDelivr:
<link rel='stylesheet' id='bootstrap-css' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='fontawesome-css' href='https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css' type='text/css' media='all' />
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js'></script>
<script type='text/javascript' src='https://cdn.jsdelivr.net/jquery.migrate/1.2.1/jquery-migrate.min.js'></script>
It's always pop up in my mind that Google is the most suitable source for jQuery and Bootstrap CDN for bootstrap, but jsDelivr supports all of them, should I just import those files from jsDelivr instead?
<link rel='stylesheet' id='bootstrap-css' href='https://cdn.jsdelivr.net/bootstrap/3.3.5/css/bootstrap.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='fontawesome-css' href='https://cdn.jsdelivr.net/fontawesome/4.4.0/css/font-awesome.min.css' type='text/css' media='all' />
<script type='text/javascript' src='https://cdn.jsdelivr.net/jquery/1.11.3/jquery.min.js'></script>
<script type='text/javascript' src='https://cdn.jsdelivr.net/jquery.migrate/1.2.1/jquery-migrate.min.js'></script>
Is there any significant difference between them?