Copy link to clipboard
Copied
Does anyone knows how to update Jquery and Bootstrap in Dreamweaver CC 2017?
1 Correct answer
Links to the latest Bootstrap and JQuery. Put these into your custom Snippets folder for quick insertion into new documents.
<!--Latest Bootstrap 4 CSS-->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<!--Latest jQuery 3-->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwl
...Copy link to clipboard
Copied
You cannot without writing your own extensions.
Dw includes these features as part of it code, and they may be updated durring the versions release cycle via a dot release, or in a future full version release.
Copy link to clipboard
Copied
Thank you for you reply very helpful (You) not Dreamweaver, regret having it more and more!
Copy link to clipboard
Copied
If you are thinking about going to Bootstrap 4, simply add the CDN files to your document as mentioned in https://getbootstrap.com/docs/4.0/getting-started/introduction/
A lot of Bootstrap 3 layout instructions remain same, those instructions that differ can be seen here https://v4-alpha.getbootstrap.com/migration/
Copy link to clipboard
Copied
Thank you for the reply, will give using Dreamweaver BuiltIn Bootstrap and Jquery and follow your instructions.
Copy link to clipboard
Copied
Links to the latest Bootstrap and JQuery. Put these into your custom Snippets folder for quick insertion into new documents.
<!--Latest Bootstrap 4 CSS-->
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-/Y6pD6FV/Vv2HJnA6t+vslU6fwYXjCFtcEpHbNJ0lyAFsXTsjBbfaDjzALeQsN6M" crossorigin="anonymous">
<!--Latest jQuery 3-->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!--Popper JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js" integrity="sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4" crossorigin="anonymous"></script>
<!--Latest Bootstrap 4 JS-->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js" integrity="sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1" crossorigin="anonymous"></script>
Copy link to clipboard
Copied
Thank you very much for the reply, very Helpful!

