I have a js containing li items in my index.html file for android app, where the js is hosted on dropbox public folder - so my code in the top of html file is like:
<script type="text/javascript" src="https://dl.dropboxusercontent.com/u/aaa/test.js"></script>
This works well, to retrieve the contents within the file test.js, but now that dropbox is killing public folder concept, I was exploring alternatives and found github, and did exact same thing, where new URL for src is:
https://raw.githubusercontent.com/userss/test/master/test.js
But, this is not working! I am not sure what is the issue. Both the files contain the same text (as you may see).
Can anyone please guide me? Or suggest other free alternatives for what I am looking to accomplish?
Thanks