JSFiddle external resources not working
Posted
by
Ahmed Kato
on Stack Overflow
See other posts from Stack Overflow
or by Ahmed Kato
Published on 2013-10-09T11:53:51Z
Indexed on
2014/06/02
3:27 UTC
Read the original article
Hit count: 363
JavaScript
|jsfiddle
I am new to jsfiddle and I am trying to link my external resources.
I added them using the tab on the left side and then paste my code on the panes
Here is my JSFiddle project but only html is shown without linking to javascript and css in the output
what I am doing wrong ?
this is my original
<head>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<script type="text/javascript" src="js/bootstrap-datepicker.js"></script>
<link rel="stylesheet" href="bootstrap-tagsinput.css">
<link rel="stylesheet" type="text/css" href="css/datepicker.css">
</head>
© Stack Overflow or respective owner