0

I have a question to You. On my local server my circle charts in JS working normally but when i want to see them through www protocol i don't see them :/. I copied my files many times to server - I don't see charts. Here is code:

   <link rel="stylesheet" type="text/css" media="all" href="css/jquery.circliful.css">
  <script type="text/javascript" src="js/jquery-1.11.1.min.js"></script>
  <script type="text/javascript" src="http://www.e-plus.com.pl/mateusz/THEMEFOREST/js/jquery.circliful.min.js"></script>

I tried to do this with my domain adress but result is the same... Webbrowser don't see my charts :(

1 Answers1

0

Did you use any

<base href="http://...">?

Try using:

<link rel="stylesheet" type="text/css" media="all" href="./css/jquery.circliful.css">
<script type="text/javascript" src="./js/jquery-1.11.1.min.js"></script>
<script type="text/javascript" src="http://www.e-plus.com.pl/mateusz/THEMEFOREST/js/jquery.circliful.min.js"></script>
Spencer Wieczorek
  • 21,229
  • 7
  • 44
  • 54