Reputation: 11
I use a template HTML file from output a web page from Google AppsScript.
I use return HtmlService.createHtmlOutputFromFile('listview');
At the space at listview.html file i have a linked to jquery library :
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js"></script>
If i run the html template independent at browser the web is correctly and the jquery is connect but wehn i use google appscript the web run but not connect at jquery library
Why i can't connect the jquery library ?
Can help me Thank's
Upvotes: 0
Views: 164