Author Topic: Paramquery/Demo site can't view demo  (Read 1824 times)

vulamicy

  • Newbie
  • *
  • Posts: 1
    • View Profile
Paramquery/Demo site can't view demo
« on: November 09, 2017, 01:21:51 pm »
Dear admin site paramquery.com

I research found pqgrid very good, i want to using it but when go to demo site for study can't see demo content. Because library Jquery can't load file (security policy block site cdnjs.cloudflare)

Please help me change script link of https://paramquery.com/demos/ site same below

Before:
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.9.2/themes/base/jquery-ui.css" ></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
</head>

After:
<head>
<script src="/libs/jqueryui/1.9.2/themes/base/jquery-ui.css" ></script>
<script src="/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
</head>

OR: Using ajax.googleapis.com
<head>
<link rel="stylesheet" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/themes/base/jquery-ui.css" />   
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
</head>

Thank you so much!