GET file://code.jquery.com/qunit/qunit-1.18.0.css net::ERR_FILE_NOT_FOUND error is given if loading the test html page from local file system (not from a live-server).
This is because // is used in the script sources which will use file:// instead of http://.
GET file://code.jquery.com/qunit/qunit-1.18.0.css net::ERR_FILE_NOT_FOUND
error is given if loading the test html page from local file system (not from a live-server).This is because
//
is used in the script sources which will use file:// instead of http://.https://
could be used instead of//
.instead of
//code.jquery...