include bootstrap in JSFiddle

2

I am a beginner in JSFiddle and I am not able to use bootstrap, I already selected jquery, html5, added bootstrap.min.css in External Resources and it did not work. I changed examples made from the Internet and worked perfectly, even made comparisons but I still could not solve. I believe it is lack of experience. And how do you know the bootstrap version?

    
asked by anonymous 08.02.2015 / 16:57

1 answer

4

To use Bootstrap in JSFiddle you have to include in external resources:

JS:

http://netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js

CSS:

http://netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css

When you select jQuery 2.1.0 you have the option to include Bootstrap 3.2.0 and Bootstrap 2.3.2.

    
08.02.2015 / 17:10