magmac / jquery-tubular

Automatically exported from code.google.com/p/jquery-tubular
MIT License
0 stars 0 forks source link

demo not working and wrong examples code #27

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi! Both in demo index.html and in the description of the component on this 
site you pasted this code:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" 
type="text/javascript"></script>

It doesn't work because it lacks of an "http" protocol. This is the right code:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" 
type="text/javascript"></script> 

Original issue reported on code.google.com by giovanni...@gmail.com on 25 Nov 2012 at 7:15

GoogleCodeExporter commented 8 years ago
I'm looking that on the demo site it works but not in zipped demo files

Original comment by giovanni...@gmail.com on 25 Nov 2012 at 8:33

GoogleCodeExporter commented 8 years ago
update: zip files work in remote but not in local. Do you think it's a problem 
of my computer or is it a plugin error?

Original comment by giovanni...@gmail.com on 27 Nov 2012 at 9:52

GoogleCodeExporter commented 8 years ago
"//" is correct. It's a format that causes the request to choose "http://" or 
"https://" depending on the protocol used to request the current page. It helps 
avoid HTTPS errors in some browsers.

Original comment by pdcl...@pdclark.com on 10 Feb 2014 at 5:45