Any tricks to get downloaded examples to work?
Any tricks to get downloaded examples to work?
rstadt
Posts: 4Questions: 1Answers: 0
absolute DataTables noob here...
I downloaded and unzipped DataTables-1.10.15 to a WIn7 directory
and clicked on examples/index.html , then zero_configuration.html
No pagination.
Am I missing something obvious?
This discussion has been closed.
Answers
are you running some sort of web site or dev site to actually run your stuff in?
Also, live.datatabes.net is a place where you can go and start playing with stuff
O.K. - I the html source from datatables.net into a local file which works. Now I will step thru the differences to see what will make the other one work.
Thanks
copied
looks like the difference is(not working)
src="//code.jquery.com/jquery-1.12.4.js"
vs (working)
src="http://code.jquery.com/jquery-1.12.4.js"
Are you loading the file over
file://
(i.e. locally?). If so, then yes, you would need to explicit give the protocol.Allan
Yep. Thx.